/* Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html, body {
    width: 100%;
    height: 100%; /* Makes sure the body takes up at least the full viewport height */
    font-family: 'Brandon Grotesque', sans-serif;
  }
  /* CSS Resets and Basic Font Setup */
  html, body, p, h1, h2, h3, h4, h5, h6 {
    font-family: 'martian mono', sans-serif;
  }
  *, *:before, *:after {
    box-sizing: border-box;
  }
  
  body.black-out {
    background-color: black;
  }
  
  /* Layout & Grid */
  /* Page Container and Grid Structure */
  .page-container {
    max-width: 100%;
    margin: auto;
  }
  .grid-container {
    display: flex;
    flex-direction: row;
    height: 100vh;
  }
  .left-column, .right-column {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .column-left, .column-right {
    justify-content: flex-end;
    padding: 0 20px;
  }
  .column-right {
    justify-content: flex-start;
  }
  /* Assigning background colors to each column */
  /* Light mode styles for the column */
  .left-column.column-left {
    background-color: #101010; /* Corrected color value for light mode */
  }
  
  /* Dark mode adjustments for the column */
  body.dark-mode .left-column.column-left {
    background-color: #101010; /* Dark mode background color */
  }
  
  .left-column {
    position: relative; /* Establishes a positioning context for absolutely positioned children */
    overflow: hidden; /* Prevents the icon from floating outside the visible area of the column */
  }
  
  /* Light mode styles for the column */
  .right-column.column-right {
    background-color: #101010; /* Light mode background, corrected color value */
  }
  
  /* Dark mode adjustments for the column */
  body.dark-mode .right-column.column-right {
    background-color: #101010; /* Dark mode background color */
  }
  
  .right-column {
    position: relative; /* Establishes a positioning context for absolutely positioned children */
    overflow: hidden; /* Prevents the icon from floating outside the visible area of the column */
  }
  
  .sun-icon {
    position: absolute;
    top: 5%; /* Slightly offset from the very corner for visibility */
    left: 85%;
    font-size: 24px; /* Adjust the size of the icon */
    color: #FFD700; /* Sun-like color, can adjust as needed */
    animation: sunGlow 30s infinite alternate ease-in-out;
  }
  
  /* Dark mode adjustments for the sun icon */
  body.dark-mode .sun-icon {
    color: #FFECB3; /* A lighter, softer color for better visibility in dark mode */
    animation: moonGlow 30s infinite alternate ease-in-out;
  }
  
  @keyframes moonGlow {
    0% {
      transform: scale(0.9); /* Start slightly smaller */
      color: #E0E0E0; /* Cooler, moon-like glow */
    }
    50% {
      transform: scale(1.1); /* Slightly larger to simulate a gentle glow */
      color: #FFFFFF; /* Brightest moon glow */
    }
    100% {
      transform: scale(0.9); /* Return to slightly smaller size */
      color: #E0E0E0; /* Back to the cooler glow */
    }
  }
  
  
  
  @keyframes sunGlow {
    0% {
      transform: scale(1); /* Normal size */
      color: #FFD700; /* Bright sun color */
    }
    50% {
      transform: scale(1.1); /* Slightly larger to simulate pulsing */
      color: #FFECB3; /* Lighter, suggesting a brighter glow */
    }
    100% {
      transform: scale(1); /* Return to normal size */
      color: #FFD700; /* Original sun color */
    }
  }
  
  
  /* Typography & Fonts */
  /* Custom Fonts and Typography Styles */
  .martian-mono {
    font-family: 'Martian Mono', monospace;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    font-variation-settings: 'wdth' 75;
  }
  #tagline, #sub-tagline {
    font-family: 'Martian Mono', monospace;
    text-transform: uppercase;
    color: #101010;
    transform: skew(-.9deg) translate(0, 1px);
    display: inline-block; /* Allows transformation */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for transform and color */
  }
  .permanent-marker-regular {
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  #tagline {
    text-shadow: 
    0 -1px 1px rgba(255, 255, 255, 0.2), 
    0 -2px 2px rgba(240, 240, 240, 0.2), 
    0 -3px 3px rgba(230, 230, 230, 0.2), 
    0 -4px 4px rgba(220, 220, 220, 0.2),
    0 -5px 5px rgba(210, 210, 210, 0.2), 
    0 -6px 6px rgba(200, 200, 200, 0.2), 
    0 -7px 7px rgba(190, 190, 190, 0.2), 
    0 -8px 8px rgba(180, 180, 180, 0.2), 
    0 -9px 9px rgba(170, 170, 170, 0.2), 
    0 -10px 10px rgba(160, 160, 160, 0.2);
  }
  /* Dark mode adjustments for #tagline */
  body.dark-mode #tagline {
    color: #ffffff; /* Ensure text color is set for visibility in dark mode */
    text-shadow: 
      0 1px 1px rgba(0, 0, 0, 0.2), 
      0 2px 2px rgba(0, 0, 0, 0.2), 
      0 3px 3px rgba(0, 0, 0, 0.2), 
      0 4px 4px rgba(0, 0, 0, 0.2);
  }
  #sub-tagline {
    text-shadow:
    0 -1px 1px rgba(255, 255, 255, 0.2), 
    0 -2px 2px rgba(240, 240, 240, 0.2), 
    0 -3px 3px rgba(230, 230, 230, 0.2), 
    0 -4px 4px rgba(220, 220, 220, 0.2),
    0 -5px 5px rgba(210, 210, 210, 0.2), 
    0 -6px 6px rgba(200, 200, 200, 0.2), 
    0 -7px 7px rgba(190, 190, 190, 0.2), 
    0 -8px 8px rgba(180, 180, 180, 0.2), 
    0 -9px 9px rgba(170, 170, 170, 0.2), 
    0 -10px 10px rgba(160, 160, 160, 0.2);
  }
  body.dark-mode #sub-tagline {
    color: #ffffff; /* Set text color for visibility in dark mode */
    text-shadow: 
      0 -1px 1px rgba(0, 0, 0, 0.2), 
      0 -2px 2px rgba(0, 0, 0, 0.2), 
      0 -3px 3px rgba(0, 0, 0, 0.2), 
      0 -4px 4px rgba(0, 0, 0, 0.2);
  }
  #tagline:hover, #sub-tagline:hover {
    box-shadow: 0 2px 8px rgba(204,203,202,0.8);
    transform: rotateX(20deg) rotateY(40deg) scale(99.1); /* Additional skew and scale */
    color: #ff7e5f;
    /* border-bottom: 2px solid #ff7e5f; */
    /* padding-bottom: 3px; */
    /* box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); */
    /* transform: scale(1.5); */
    transform: skew(-15deg) translate(0, 1px);
    /* animation: pulse 1s infinite alternate; */
  }
  
  @keyframes pulse {
    from {
      transform: scale(1);
    }
    to {
      transform: scale(1.1);
    }
  }
  .left-column.black {
    background-color: black;
  }
  @keyframes bounce {
    0% { left: 0%; top: 0%; }
    25% { left: 100%; top: 0%; }
    50% { left: 100%; top: 100%; }
    75% { left: 0%; top: 100%; }
    100% { left: 0%; top: 0%; }
}
  /* Styling for Elements with Specific Classes */
  /* Placeholder and Image Styling */
  #tagline.placeholder-left, #sub-tagline.placeholder-right, #tagline.placeholder-left span, #sub-tagline.placeholder-right span, #tagline.placeholder-left img, #sub-tagline.placeholder-right img {
    font-family: 'Martian Mono', monospace;
    color: #101010;
    opacity: 0.8;
  }
  /* Styling for text within the left placeholder to align right, towards the column divider */
  #tagline.placeholder-left,
  #tagline.placeholder-left span,
  #tagline.placeholder-left img {
    text-align: right; /* Aligns text and inline elements like <span> to the right */
    display: block; /* Ensures block-level display for proper alignment, particularly necessary for <img> */
  }
  
  /* Styling for text within the right placeholder to align left, towards the column divider */
  #sub-tagline.placeholder-right,
  #sub-tagline.placeholder-right span,
  #sub-tagline.placeholder-right img {
    text-align: left; /* Aligns text and inline elements like <span> to the left */
    display: block; /* Ensures block-level display for proper alignment, particularly necessary for <img> */
  }
  /* New hover style for subTagline */
  .subTagline-hover-effect {
    box-shadow: 0 4px 8px rgba(255, 100, 100, 0.6); /* Example new shadow effect */
  }
  
/* Navigation & Profile */

/* Change navbar color when profile picture is clicked */
.profile-picture.clicked {
    /* Add your desired CSS properties to change the navbar color */
    background-color: #ff7e5f;
    color: #0a0a0a;
}
  /* Navigation & Profile */
  /* Styles for Navigation Bar and Profile Section */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: sticky;
    bottom: 0;
    width: 100%;
  }
  .profile {
    display: flex;
    align-items: center;
  }
  .profile-picture {
    background-image: url('https://founders-circle-font.s3.amazonaws.com/UNPARTY-3.svg');
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  nav ul, nav a, nav i {
    display: flex;
    align-items: center;
  }
  nav ul {
    justify-content: center;
    list-style-type: none;
    gap: 20px;
    padding: 0;
  }
  nav a {
    gap: 8px;
    text-decoration: none;
    color: inherit;
    font-size: 1em;
    font-family: 'Roboto Condensed', sans-serif;
  }
  nav a span {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  nav a:hover span, nav a:focus span {
    display: inline;
    opacity: 1;
  }
  .profile-name {
    margin-left: 10px;
  }
  /* Dark Mode Styles */
  body.dark-mode .navbar {
    color: #ffffff; /* Light text color for contrast */
  }
  
  body.dark-mode .navbar a,
  body.dark-mode .profile-name,
  body.dark-mode nav a span {
    color: #ffffff; /* Ensure all text within the navbar is visible in dark mode */
  }
  
  body.dark-mode .profile-picture {
    background-image: url('https://founders-circle-font.s3.amazonaws.com/u-image-y-loading-1x-b+(2).png');
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    /* Optional: Adjust the profile picture for dark mode if needed */
    /* For example, you might want to apply a CSS filter to invert colors or adjust brightness */
    filter: brightness(0.8);
  }
  
  /* You might also want to adjust the nav link hover/focus styles for dark mode */
  body.dark-mode nav a:hover,
  body.dark-mode nav a:focus {
    background-color: #3a3a3a; /* Slightly lighter background for hover/focus states */
    color: #ffffff; /* Ensure text remains white for visibility */
  }
  
  body.dark-mode nav a:hover span,
  body.dark-mode nav a:focus span {
    color: #ffffff; /* Keep inline text visible on hover/focus */
    opacity: 1; /* Ensure visibility */
  }
  /* Navbar Overlay Styling */
  .overlay .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    color: #fff; /* White color for visibility */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7); /* Glow effect */
    font-size: 20px; /* Adjust size as needed */
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* Ensure this is dark for contrast */
    z-index: 1000;
    display: none; /* Start hidden */
    justify-content: center;
    align-items: center;
}

.overlay-content {
  font-family: 'Martian Mono', monospace;
  color: #e0e0e0; /* Light grey for sleek appearance */
  background-color: black;
  padding: 40px; /* Increased padding for a more spacious layout */
  border-radius: 5px;
  text-transform: uppercase;
  text-align: left; /* Align text to the left for a more traditional paragraph layout */
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 30px;
}
.overlay-heading {
  display: block; /* Makes it appear on its own line */
  font-size: 24px; /* Larger font size for heading */
  font-weight: bold; /* Bolder weight for emphasis */
  margin-bottom: 10px; /* Space between the heading and the rest of the paragraph */
  color: #ffffff; /* Optional: could use a different color for more emphasis */
}
.overlay-link {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  margin-top: 20px; /* Adjust as needed */
}
.checklist-item {
  display: block; /* Make each checklist item its own line */
  margin-top: 10px; /* Space out the items */
  padding-left: 20px; /* Space for the custom bullet or icon */
  position: relative;
}

.checklist-item::before {
  content: '✔'; /* Custom bullet/indicator */
  color: #4CAF50; /* Green color for the check mark */
  position: absolute;
  left: 0;
}
.overlay-content p i {
  margin-right: 8px; /* Space between the icon and text */
  color: #e0e0e0;
   /* Color of the icon */
}
.emphasis {
  color: #363336; /* Dark text color */
  text-shadow: 
      0 0 2px #454545, /* Innermost layer: tight, white glow for immediate lift */
      0 0 4px rgba(255, 255, 255, 0.1), /* Middle layer: brighter, more diffuse glow */
      0 0 6px rgba(168, 218, 220, 0.1), /* Outer layer: colored glow matching the original theme */
      0 0 8px rgba(168, 218, 220, 0.1); /* Farthest layer: soft, wide, colored aura */
}


/* Styling for individual sentences to appear on their own line */
.overlay-content p {
  white-space: pre-line; /* Ensures that each sentence can be on its own line */
}
.list-item {
  padding-top: 2px;
  margin-bottom: 12px; /* Space between list items */
  font-weight: lighter; /* Lighter font weight for list items */
}

.list-item i {;
  margin-right: 10px; /* Space between the icon and text */
  color: #c5c5c5; /* Slightly different color for icons */
}


.close-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  color: #e0e0e0; /* Matching the text color */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.7); /* Glow to ensure visibility */
  font-size: 24px;
}

#waitlistForm {
  font-family: 'Martian Mono', monospace;
  color: #fff;
  background-color: #000; /* Ensure form background matches site theme */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1); /* Soft white glow for depth */
}

#waitlistForm label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px; /* Slightly larger for readability */
  opacity: 0.85; /* Soften the label text */
}

#waitlistForm input[type="email"] {
  width: 100%;
  padding: 12px;
  background-color: #121212; /* Darker than form bg for depth */
  border: 1px solid #333;
  border-radius: 6px;
  margin-bottom: 15px;
  color: #fff; /* Ensure text is bright against dark input */
  transition: all 0.3s ease; /* Smooth transition for focus */
}

#waitlistForm input[type="email"]:focus {
  border-color: #45a049; /* Highlight input on focus */
  outline: none; /* Remove default focus outline */
  box-shadow: 0 0 0 2px rgba(69, 160, 73, 0.5); /* Soft glow effect */
}

#waitlistForm button {
  font-family: 'Martian Mono', monospace;
  text-transform: uppercase; /* Ensure this is correctly applied */
  background-color: #090909;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions for hover */
}

#waitlistForm button:hover, #waitlistForm button:focus {
  background-color: #45a049; /* A lively shade on hover/focus */
  transform: translateY(-2px); /* Slight lift effect */
  outline: none; /* Remove focus outline for a clean look */
}

#waitlistForm button:active {
  transform: translateY(1px); /* Pressed effect */
}

/* Add a keyframe animation for button to gently grab attention */
@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(69, 160, 73, 0);
  }
  50% {
    box-shadow: 0 0 0 2px rgba(69, 160, 73, 0.6);
  }
}

#waitlistForm button {
  animation: gentlePulse 2s infinite; /* Apply the animation to the button */
}

  
  /* Animations */
  /* Keyframe Animations for Icons */
  /*@keyframes floatCircular {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translateX(50%) rotate(90deg); }
    50% { transform: translateY(50%) rotate(180deg); }
    75% { transform: translateX(-50%) rotate(270deg); }
    100% { transform: translateY(-50%) rotate(360deg); }
  }
  .bouncing-icon {
    animation: floatCircular 10s infinite ease-in-out;
  } */
  @keyframes floatGentle {
    0%, 100% { 
      transform: translate(0, 0) rotate(0deg);
    }
    10%, 90% { 
      transform: translate(0, -10px) rotate(-2deg);
    }
    25%, 75% { 
      transform: translate(0, 5px) rotate(2deg);
    }
    50% { 
      transform: translate(0, -5px) rotate(-1deg);
    }
  }
  
  .bouncing-icon {
    animation: floatGentle 60s infinite ease-in-out;
  }
  
  
  /* Responsive Design */
  /* Media Queries for Responsive Adjustments */
  @media (max-width: 768px) {
    html, body {
      overflow: auto; /* Hide horizontal overflow */
    }

    @media (max-width: 768px) {
      .overlay-content {
          max-height: 80vh; /* Adjust based on your design needs */
          overflow-y: auto;
          padding: 20px; /* Added padding for better readability on small screens */
      }
  }
  
    .left-column, .right-column {
      padding: 0 10px; /* Reduce padding on smaller screens */
      box-sizing: border-box; /* Ensure padding doesn't add to the width */
    }
    #tagline {
      padding: 0 15px; /* Specific adjustment for #tagline */
    }
    #sub-tagline {
      padding: 10px 15px; /* Adjusts to match #tagline's horizontal padding */
    }
    body, nav a, nav i {
      font-size: 14px; /* Adjusts font size for readability */
    }
    .navbar {
      bottom: 0;
      height: 50px; /* Adjusts navbar height */
    }
    .sun-icon {
      left: 75%
    }
    img, .responsive-element {
      max-width: 100%;
      height: auto;
    }
  }
  
  @media (min-width: 769px) {
    .profile-row.navbar {
      position: fixed;
      width: 100%;
      left: 0;
      right: 0;
      padding: 0 20px;
    }
  }
  
  /* Custom Fonts */
  /* Font-Face Declarations and Custom Font Styling */
  @font-face {
    font-family: 'Brandon Grotesque';
    src: url('https://founders-circle-font.s3.amazonaws.com/MyWebfontsKit/webFonts/BrandonGrotesqueW05Black/font.woff') format('woff');
    font-weight: bold;
    font-style: normal;
  }
  @font-face {
    font-family: 'Brandon Grotesque Light';
    src: url('https://founders-circle-font.s3.amazonaws.com/MyWebfontsKit/webFonts/BrandonGrotesqueW05Light/font.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }