/* Root Variables */
:root {
    --main-bg-color: #151515;
    --secondary-bg-color: #1A1A1A;
    --tertiary-bg-color: #121212;
    --darker-bg-color: #0e0e0e; /* New darker background color */
    --text-color: #ffffff;
    --border-color: #ffffff;
    --accent-color: #FF7700;
    --secondary-border-color: #363636;
}
  
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    background-color: var(--main-bg-color);
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.about, .form-section {
    padding-top: 5em;
    padding-bottom: 5em;
}
  
/* Typography */
h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-bottom: 0.5em;
}
  
.header-main {
    font-family: 'Russo One', sans-serif;
}
  
/* Navbar Styles */
header {
    background-color: var(--secondary-bg-color);
    padding: 1em;
    position: relative;
}
  
header nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 80%; /* Matches the border width */
    margin: 0 auto; /* Centers the nav content */
}
  
header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%; /* Aligns with nav content */
    width: 80%; /* Matches nav width */
    border-bottom: 0.5px solid var(--border-color); /* Thinner border */
}
nav .logo {
    display: flex;
    gap: 0.5em;
    font-size: 1.2rem;
    font-family: 'Russo One', sans-serif;
    cursor: pointer; /* Keeps the click pointer on hover */
    text-decoration: none; /* Removes default underline from the <a> tag */
    color: inherit; /* Ensures the text color matches the existing design */
}

nav .logo img {
    height: 20px;
    width: auto;
    padding: 0%;
}

  
nav ul {
    list-style: none;
    display: flex;
    gap: 1.5em;
}
  
nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 300;
    font-size: 0.85rem;
    transition: color 0.2s;
}
  
nav ul li a:hover {
    color: var(--accent-color); /* Change to accent color on hover */
}
 
/* Main Content Padding */
main {
    padding: 0 10%; /* Matches the navbar's left and right alignment */
}

/* Landing Page Styles */
.landing {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}
  
.landing h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5em;
    color: var(--text-color);
}
  
.landing p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    max-width: 600px;
    color: var(--text-color);
}
  
/* About Section Styles */
/* About Section Styles */
.about {
    padding-top: 2em; /* Adds space above the section */
}

.about h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.5em;
    text-align: left; /* Left-aligned */
}

.about p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-color);
    text-align: left; /* Left-aligned */
    line-height: 1.6;
}

  .lists-container {
    margin-top: 45px;
    display: flex; 
    justify-content: space-between; 
    gap: 20px; 
  }
  
  


  .list.creators {
    flex: 1;
    padding: 20px;
    border: 1px solid var(--secondary-border-color);
    border-radius: 2px;
    background: radial-gradient(circle at right, rgba(128, 128, 128, 0.05), transparent 50%);
}

.list.consumers {
    flex: 1;
    padding: 20px;
    border: 1px solid var(--secondary-border-color);
    border-radius: 2px;
    background: radial-gradient(circle at left, rgba(128, 128, 128, 0.05), transparent 50%);
}






  .about .list h3 {
    
    margin-bottom: 10px;
  }
  
  .about .list ul {
    padding-left: 30px;
  }
  
  .about .list li {
    margin-bottom: 8px;
  }

  
.form-section {
    padding-top: 4em;
    color: var(--text-color);
    text-align: center;
}

.form-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.5em;
    color: var(--text-color);
}

.form-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 1.5em;
}

/* Form container */
.form-section a {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}


.form-section a {
    background: transparent;
    text-decoration: none; 
    border: 1px solid var(--secondary-border-color); 
    color: var(--text-color); 
    padding: 0.75em 1.5em;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    border-radius: 4px; 
    transition: all 0.3s ease; /* Smooth transitions */
}

.form-section a:hover {
    background: var(--text-color); /* Fill with text color */
    color: var(--main-bg-color); /* Text switches to background color */
    transform: translateY(-2px); /* Slight lift */
}





  

/* Footer Styles */
footer {
    background-color: var(--darker-bg-color);
    color: var(--text-color);
    padding: 2em 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-links,
.footer-social {
    margin-top: 1em;
}

.footer-links a,
.footer-social a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 0.5em;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--accent-color); /* Changes color on hover */
}



/* Utility Classes */
.text-center {
    text-align: center;
}
  
.mt-1 { margin-top: 1em; }
.mt-2 { margin-top: 2em; }
  
/* Border Style */
.border-white {
    border: 1px solid var(--border-color);
}
