/* RAVL CSS */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "aktiv-grotesk", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
}

/* Navigation styles */
.site-header {
    position: fixed; /* Fix the header to the top of the page */
    top: 0; /* Align it to the top */
    left: 0; /* Align it to the left edge */
    width: 100%; /* Make it full-width */
    z-index: 100; /* Ensure it's above other content */
    
}

.site-navbar {
    padding: 10px 15px; /* Adjust padding for spacing inside the navbar */
    margin-left: 5vw;
    margin-right: 5vw;
    padding-bottom: 8px;
    padding-top: 8px;
  }
  
  .site-navbar-dark-border {
  border: 2px white solid;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.55);
  }
  
  .site-navbar-light-border {
  border: 2px black solid;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0.80);
  }
  
  
  .sitenavbar-brand img {
    max-height: 35px; /* Maintain the height of the logo */
  }
  
  .site-navbar-nav .site-menu-link {
    color: white; /* Text color for links */
    padding: 10px 15px; /* Padding for better clickable area */
    text-decoration: none;
    font-weight: 500;
  }
  
  .site-navbar-nav .site-menu-link:hover {
    color: #007bff; /* Highlight color on hover */
  }
  
  .site-nav-item {
  margin-right: 2.5vw;
  margin-left:2.5vw;
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  }
  
  .navbar {
    margin-left: 5vw;
    margin-right: 5vw;
  }

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    height: 48px;
}

.logo {
    height: 100%;
    width: auto;
}

.dark-logo {
    display: none;
}

.menu-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.menu-link a {
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
  }
  
  /* Individual link hover colors */
  .menu-link a[href="/"]:hover {
    color: #11aaff;
  }
  
  .menu-link a[href="/about"]:hover {
    color: #A4B3F1;
  }
  
  .menu-link a[href="/events"]:hover {
    color: #EFB7A3;
  }
  
  .menu-link a[href="/articles"]:hover {
    color: #F3D68D;
  }
  
  .menu-link a[href="/join"]:hover {
    color: #8EF1DA;
  }

/* Light section navigation */
.nav-links {
    display: flex;
    gap: 0;
    border: 2px solid black;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.55); /* White background for light sections */
    padding: 0;
    height: 48px;
    transition: background-color 0.3s ease;
}

.nav-links a {
    height: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
    transition: color 0.3s ease;
}

/* Individual link hover colors */
.nav-links a[href="/"]:hover {
    color: #11aaff;
}

.nav-links a[href="/about"]:hover {
    color: #A4B3F1;
}

.nav-links a[href="/events"]:hover {
    color: #EFB7A3;
}

.nav-links a[href="/articles"]:hover {
    color: #F3D68D;
}

.nav-links a[href="/join"]:hover {
    color: #8EF1DA;
}

/* Dark section navigation */
.dark-section .nav-links {
    border-color: white;
    background-color: rgba(0, 0, 0, 0.55); /* Black background for dark sections */
}

.dark-section .nav-links a {
    color: white;
}

.dark-section .nav-links a:hover {
    background-color: transparent;
}

.dark-section .dark-logo {
    display: block;
}

.dark-section .light-logo {
    display: none;
}

/* Hamburger menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 48px;
    height: 48px;
    padding: 12px;
    border: 2px solid black;
    border-radius: 25px;
    background: none;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
}

/* Dark section hamburger menu - light/white style (base styles) */
.site-header.dark-section .hamburger-menu {
    border-color: white;
}

.site-header.dark-section .hamburger-menu span {
    background-color: white;
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        border: none;
        background: none;
        height: auto;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Dark section hamburger menu - light/white style (mobile override) */
    .site-header.dark-section .hamburger-menu {
        border-color: white;
    }

    .site-header.dark-section .hamburger-menu span {
        background-color: white;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
    }

    .nav-links a {
        padding: 0.5rem 1.5rem;
        color: black;
        border: 2px solid black;
        border-radius: 25px;
        margin: 0.25rem 1rem;
        background-color: rgba(255, 255, 255, 0.55); /* White background for light sections */
    }

    .dark-section .nav-links.active {
        background: #262626;
    }

    .dark-section .nav-links a {
        border-color: white;
        color: white;
        background-color: rgba(0, 0, 0, 0.55); /* Black background for dark sections */
    }

    .nav-links a:hover {
        background-color: transparent;
    }
    
    .dark-section .nav-links a:hover {
        color: inherit; /* Prevents the text from turning black on hover */
    }
}

/* Footer styles */
.site-footer {
    background: linear-gradient(to bottom, #262626, #0D0D0D);
    color: white;
    padding: 0 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 0;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 48px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column:nth-child(1) {
    text-align: left;
}

.footer-column:nth-child(2) {
    text-align: center;
}

.footer-column:nth-child(3) {
    text-align: right;
}

.footer-column a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile footer styles */
@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-column {
        margin-bottom: 2rem;
    }

    .footer-column:last-child {
        margin-bottom: 0;
    }
}

/* Hero section styles */
.hero {
    min-height: 75vh;
    display: flex;
    width: 100%;
}

.hero-content {
    flex: 0 0 40%;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    color: white;
    background: linear-gradient(to bottom, #262626, #0D0D0D);
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: right;
    max-width: 80%;
    line-height: 1.1;
}

.hero-line {
    width: 85px;
    height: 6px;
    background-color: #11aaff;
    margin: 1.5rem 0;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: right;
    max-width: 80%;
}

.join-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 25px;
    background-color: #11aaff;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.join-button:hover {
    transform: translateY(-2px);
}

.hero-video {
    flex: 0 0 60%;
    position: relative;
    min-height: 60vh;
    overflow: hidden;
    background: #000;
}

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77777778vh; /* 16:9 aspect ratio */
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Mobile hero styles */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-content {
        width: 100%;
        min-height: 60vh;
        align-items: center;
        text-align: center;
        padding: 6rem 1rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }

    .hero-video {
        width: 100%;
        min-height: 40vh;
    }
}

/* Quote section styles */
.quote-section {
    min-height: 50vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.quote-content {
    width: 75vw;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.quote-content p {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Background quotes image */
.quote-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url('https://static.ravl.social/public/images/big-quotes.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 0;
}

/* Mobile quote styles */
@media (max-width: 768px) {
    .quote-content {
        width: 90vw;
    }
    
    .quote-content p {
        font-size: 1.8rem;
    }
}

/* Update Make The Most section styles */
.make-most-section {
    background: linear-gradient(to bottom, #F7F9FF, #D9D9D9);
    padding: 6rem 2rem;
    color: black;
}

.make-most-container {
    width: 75vw;
    margin: 0 auto;
    text-align: center;
}

.make-most-section h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    border-radius: 12.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 200px;
}

.benefit-card-1 {
    background: linear-gradient(135deg, #a8e0ff 0%, #d2d9f8 100%);
}

.benefit-card-2 {
    background: linear-gradient(135deg, #d2d9f8 0%, #c6f8ed 100%);
}

.benefit-card-3 {
    background: linear-gradient(135deg, #c6f8ed 0%, #a8e0ff 100%);
}

.checkmark {
    font-size: 2rem;
    color: black;
}

.benefit-card p {
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 80%;
    color: black;
    text-align: center;
    font-weight: 500;
}

/* Add to Make The Most section styles */
.make-most-intro {
    margin: 0 auto 4rem;
}

.make-most-intro p {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.make-most-intro p:last-child {
    margin-bottom: 0;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .make-most-section {
        padding: 4rem 1rem;
    }

    .make-most-section h2 {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }

    .benefits-cards {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 2rem 1rem;
    }

    .benefit-card p {
        font-size: 1.2rem;
        max-width: 100%;
    }

    .make-most-container {
        width: 90vw;
    }

    .make-most-intro {
        margin-bottom: 3rem;
    }

    .make-most-intro p {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Love RAVL section styles */
.love-ravl-section {
    background-color: white;
    padding: 3vh 2rem;
}

.love-ravl-container {
    width: 75vw;
    margin: 0 auto;
    text-align: center;
}

.love-ravl-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: black;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    color: white;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.95));
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.testimonial-author {
    margin-top: 0.5rem;
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile styles for Love RAVL section */
@media (max-width: 768px) {
    .love-ravl-section {
        padding: 4rem 1rem;
    }

    .love-ravl-container {
        width: 90vw;
    }

    .love-ravl-section h2 {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #11aaff;
}

.stars span {
    margin: 0 0.25rem;
}

.stars span:nth-child(1) {
    color: #11aaff;
}

.stars span:nth-child(2) {
    color: #A4B3F1;
}

.stars span:nth-child(3) {
    color: #EFB7A3;
}

.stars span:nth-child(4) {
    color: #F3D68D;
}

.stars span:nth-child(5) {
    color: #8EF1DA;
}

@media (max-width: 768px) {
    .stars {
        font-size: 1.2rem;
    }
}

.join-button-container {
    margin-top: 4rem;
    text-align: center;
}

.love-ravl-section .join-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    height: 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 25px;
    background-color: #11aaff;
    color: white;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.love-ravl-section .join-button:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .join-button-container {
        margin-top: 3rem;
    }
}

/* Features section styles */
.features-section {
    background: white;
    padding: 0;
}

.features-container {
    width: 100%;
    margin: 0;
}

.features-grid {
    display: flex;
    flex-direction: column;
}

.feature-card {
    text-align: left;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    width: 75vw;
    height: 50vh;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    border: 1px solid #D5F5E8;
    background-color: #EDFAF7;
}

.feature-card:last-child {
    margin-bottom: 0;
}

.feature-content {
    padding-right: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: 50%;
}

.feature-image {
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 50px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-card:nth-child(even) .feature-content {
    padding-right: 0;
    padding-left: 2rem;
}

.feature-category {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: #11aaff;
}

.feature-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-card p {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #666;
    margin-bottom: 1rem;
}

.feature-card p:last-child {
    margin-bottom: 0;
}

/* Mobile styles for Features section */
@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        padding: 2rem 1rem;
        width: 90vw;
        height: auto;
    }

    .feature-content,
    .feature-image {
        width: 100%;
        padding: 0;
    }

    .feature-image {
        height: 340px;
        margin-top: 2rem;
    }

    .feature-card:nth-child(even) {
        flex-direction: column;
    }

    .feature-card:nth-child(even) .feature-content {
        padding: 0;
    }

    .feature-category,
    .feature-title {
        width: 90vw;
    }

    .feature-title {
        font-size: 1.8rem;
    }

    .feature-card p {
        font-size: 1.1rem;
    }
}

/* Large text section styles */
.large-text-section {
    background: white;
    padding-top: 8vh;
    padding-bottom: 8vh;
    color: black;
    text-align: center;
}

.large-text-container {
    width: 75vw;
    margin: 0 auto;
}

.large-text {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.large-text:last-child {
    margin-bottom: 0;
}

/* Mobile styles */
@media (max-width: 768px) {
    .large-text-section {
        padding: 4rem 1rem;
    }

    .large-text-container {
        width: 90vw;
    }

    .large-text {
        font-size: 2rem;
    }
}

/* Form section styles */
.form-section {
    background: linear-gradient(to bottom, #262626, #0D0D0D);
    padding: 0 2rem;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.form-container {
    position: relative;
    z-index: 1;
    width: 75vw;
    margin: 0 auto;
    text-align: center;
}

.form-section h2 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

.signup-form-inputs {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.signup-form input {
    flex: 1;
    padding: 0 1rem;
    height: 45px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
}

.signup-form .join-button {
    padding: 0 2.5rem;
    height: 45px;
    white-space: nowrap;
    min-width: fit-content;
    align-self: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .form-section {
        height: auto;
        min-height: 50vh;
        padding: 4rem 1rem;
    }

    .form-container {
        width: 90vw;
    }

    .signup-form-inputs {
        flex-direction: column;
    }

    .signup-form input {
        width: 100%;
        padding: 1vh 1rem;
    }
}

/* Hide mobile layout on desktop */
.story-mobile {
    display: none;
}

/* Story Hero Section */
.story-hero {
    height: 40vh;
    display: flex;
    width: 100%;
}

.story-hero-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #262626, #0D0D0D);
    color: white;
}

.story-hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: left;
}

.story-hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Container for both h1 and p */
.story-hero-content h1,
.story-hero-content p {
    width: 80%;
}

.story-hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Hide desktop layout on mobile */
    .story-desktop {
        display: none;
    }

    /* Show mobile layout */
    .story-mobile {
        display: flex;
        flex-direction: column;
    }

    /* Mobile heading (Purple) */
    .story-mobile-heading {
        background-color: #A4B3F1;
        padding: 3rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .story-mobile-heading h2 {
        font-size: 3rem;
        font-weight: 600;
        color: rgb(147, 161, 217);
        margin: 0;
    }

    /* Mobile image */
    .story-mobile-image {
        height: 50vh;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    /* Mobile blue section */
    .story-mobile-blue {
        background-color: #11aaff;
        color: white;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .story-mobile-blue p {
        font-size: 1.1rem;
        line-height: 1.6;
        width: 80%;
        margin: 0;
    }

    /* Mobile white section */
    .story-mobile-white {
        background-color: white;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .story-mobile-white p {
        font-size: 1.1rem;
        line-height: 1.6;
        width: 80%;
        margin: 0;
    }

    /* Mobile mint section */
    .story-mobile-mint {
        background-color: #8EF1DA;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .story-mobile-mint p {
        width: 80%;
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
        margin: 0;
    }
}

/* Story sections */
.story-sections {
    display: flex;
    width: 100%;
    height: 50vh;
}

.story-left {
    width: 25%;
    background-color: #A4B3F1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-left h2 {
    transform: rotate(-90deg);
    font-size: 6rem;
    font-weight: 600;
    color: rgb(147, 161, 217);  /* This is the RGB equivalent of (0.578, 0.631, 0.85) */
    white-space: nowrap;
}

.story-middle {
    width: 50%;
    background-color: white;
    padding: 4rem;
    display: flex;
    align-items: center;
}

.story-middle p {
    font-size: 1.25rem;
    line-height: 1.6;
}

.story-right {
    width: 25%;
    background-color: #EFB7A3;
}

/* Mobile styles */
@media (max-width: 768px) {
    .story-left {
        width: 100%;
        padding: 2rem;
    }

    .story-left h2 {
        transform: none;
        font-size: 3rem;
    }

    .story-middle {
        width: 100%;
        padding: 2rem;
    }

    .story-middle p {
        font-size: 1.1rem;
    }

    .story-right {
        display: none; /* Hide empty right section on mobile */
    }
}

/* Add to Story Hero Section styles */
.story-hero-reversed {
    flex-direction: row-reverse;
}

/* Update mobile styles */
@media (max-width: 768px) {
    /* Events page hero: content on top, image below (like home page) */
    main > .story-hero:first-child {
        flex-direction: column;
        height: auto;
    }

    main > .story-hero:first-child .story-hero-content {
        width: 100%;
        padding: calc(3rem + 1vh) 1rem 3rem 1rem;
    }

    main > .story-hero:first-child .story-hero-image {
        width: 100%;
        height: 50vh;
        flex: none;
        display: block;
        background-size: cover;
        background-position: center;
    }

    .story-hero-reversed {
        flex-direction: column;
        height: auto;
    }

    /* Second story-hero: image first, then content */
    .story-hero-reversed .story-hero-image {
        order: 1;
        height: 50vh;
    }

    .story-hero-reversed .story-hero-content {
        order: 2;
        padding: 2rem 1rem;
    }
}

.story-impact {
    height: 50vh;
    width: 100%;
    background-color: #8EF1DA;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.story-impact p {
    width: 60%;  /* This creates the 20% margin on each side */
    font-size: 1.25rem;
    line-height: 1.6;
    text-align: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .story-impact p {
        width: 90%;
        font-size: 1.1rem;
    }
}

/* Color bar section */
.color-bar {
    height: 10px;
    width: 100%;
    display: flex;
}

.color-column {
    flex: 1;
}

.color-blue {
    background-color: #11aaff;
}

.color-purple {
    background-color: #A4B3F1;
}

.color-pink {
    background-color: #EFB7A3;
}

.color-yellow {
    background-color: #F3D68D;
}

.color-green {
    background-color: #8EF1DA;
}

/* Events page styles */
.events-hero {
    height: 40vh;
    background: linear-gradient(to bottom, #262626, #0D0D0D);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.events-hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.events-hero p {
    font-size: 1.25rem;
    max-width: 600px;
}


.events-grid {
    padding: 4rem 2rem;
}

.events-container {
    width: 75vw;
    margin: 0 auto;
}

.events-container h2 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

.events-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 4rem 2rem;
}

.events-placeholder-content {
    text-align: center;
    max-width: 800px;
    padding: 3rem;
    background: linear-gradient(135deg, #A4B3F1 0%, #11AAFF 100%);
    border-radius: 10px;
}

.events-placeholder-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.events-placeholder-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1rem;
}

.events-placeholder-content p:last-child {
    margin-bottom: 0;
}

.events-placeholder-content strong {
    color: white;
    font-weight: 600;
}

.events-notify-form {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.events-notify-form h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.events-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.events-form-fields input {
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.events-form-fields input:focus {
    outline: none;
    border-color: #11AAFF;
}

.events-notify-button {
    padding: 0.75rem 2rem;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.events-notify-button:hover {
    background-color: white;
    color: #11AAFF;
    border-color: white;
}

.events-placeholder-success {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #8EF1DA;
    color: #262626;
    border-radius: 25px;
}

.events-placeholder-success p {
    margin: 0;
    color: #262626;
    font-weight: 500;
}

.events-placeholder-error {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f44336;
    color: white;
    border-radius: 25px;
}

.events-placeholder-error p {
    margin: 0;
    color: white;
}

@media (max-width: 768px) {
    .events-placeholder-content {
        padding: 2rem 1.5rem;
    }

    .events-placeholder-content h3 {
        font-size: 2rem;
    }

    .events-placeholder-content p {
        font-size: 1.1rem;
    }

    .events-notify-form h4 {
        font-size: 1.5rem;
    }

    .events-form-fields {
        max-width: 100%;
    }
}

.event-teaser-section {
	height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the content */
    align-items: center; /* Horizontally centers the content */
    width: 100%;
    overflow: hidden;
    background-color: #353e43;
}

.event-teaser-content {
	position: relative;
    width: 70vw;
    animation: fadeIn 0.5s forwards;
    text-align: center; /* Ensures text inside is also centered */
}

.event-teaser-content p {
	font-size: 3rem;
	color: white;
}

.event-why-section {
	height: 60vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the content */
    align-items: left; /* Horizontally centers the content */
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.event-why-content {
	position: relative;
    animation: fadeIn 0.5s forwards;
    text-align: left; /* Ensures text inside is also centered */
}

.event-why-row {
	width: 60%;
}
.event-why-content h2 {
	font-size: 6rem;
	color: black;
}

.event-why-content p {
	font-size: 1.2rem;
	color: black;
	text-align: left;
}

.event-included-section {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers the content */
    align-items: left; /* Horizontally centers the content */
    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
}

.event-included-content {
	position: relative;
    animation: fadeIn 0.5s forwards;
    text-align: left; /* Ensures text inside is also centered */
}

.event-included-row {
	width: 60%;
}
.event-included-content h2 {
	font-size: 6rem;
	color: black;
}

.event-included-content p {
	font-size: 1.2rem;
	color: black;
	text-align: left;
}


.event-accordion-button {
	font-size: 1.5rem;
	padding-top: 30px;
	padding-bottom: 30px;
}

.event-accordion-section {
	padding-bottom: 5vh;
}


.event-venue {
    margin-bottom: 1rem;
}

.venue-name {
    font-size: 0.9rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #ffffff;
}

.venue-address {
    color: #666;
    font-size: 0.9rem;
}

.event-date {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-time {
    color: #666;
}

.event-price {
    font-weight: 600;
    color: #11aaff;
    margin-top: 0;
    margin-bottom: 0;
}

.events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-2px);
}

.event-card__overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease;
    pointer-events: none;
}

.event-card:hover .event-card__overlay {
    background-color: rgba(0, 0, 0, 0.65);
}

.event-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.7rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-description {
    color: #666;
}

.event-datetime {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.event-time {
    color: #11aaff;
    font-size: 0.85rem;
}

.event-price {
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0;
}

/* Single event page styles */
.single-event {
    min-height: 100vh;
}

.event-header {
    height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.event-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
}

.event-header-content {
    position: relative;
    color: white;
    padding: 2rem;
    width: 75vw;
    margin: 0 auto;
}

.event-header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-body {
    width: 75vw;
    margin: 0 auto;
    padding: 4rem 0;
}

.event-registration {
    margin-top: 2rem;
    text-align: center;
}

.event-button {
	background: none;
	border: 2px solid white;
	border-radius: 2rem;
	margin-top: 3vh;
}


#buy-button {
	background-color: rgba(0, 0, 0, 0.55);
	cursor: pointer;
	z-index: 10000;
}

#buy-button-top {
	background-color: rgba(0, 0, 0, 0.55);
	cursor: pointer;
	z-index: 10000;
	margin-top: 0px;
	margin-right: 0.9vw;
	visibility: hidden;
}


#buy-button:hover {
    background-color: black;
    color: #11aaff;
    border-color: #11aaff;
    z-index: 10000;
}

.adjust-buy-button {
	position: fixed;
	width: 89vw;
	z-index: 1;
}
.fixed-buy-button {
    position: fixed; /* Fixed position at the top */
    top: 0;
    width: 100%; /* Optional: Full width */
    z-index: 10000; /* Stay above other content */
    padding: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Shadow */
    margin-top: 10px;
}

.register-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #11aaff;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.register-button:hover {
    transform: translateY(-2px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .events-container {
        width: 90vw;
    }

    .events-hero h1 {
        font-size: 2rem;
    }

    .event-header-content {
        width: 90vw;
    }

    .event-header h1 {
        font-size: 2rem;
    }

    .event-body {
        width: 90vw;
        padding: 2rem 0;
    }
}

/* Unsubscribe page styles */
.unsubscribe-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to bottom, #F7F9FF, #D9D9D9);
}

.unsubscribe-container {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.unsubscribe-logo {
    margin-bottom: 2rem;
}

.unsubscribe-logo img {
    height: 48px;
    width: auto;
}

.unsubscribe-confirmation h1,
.unsubscribe-form h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #262626;
}

.unsubscribe-confirmation p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.unsubscribe-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.unsubscribe-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #262626;
}

.unsubscribe-form input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.unsubscribe-form input:focus {
    outline: none;
    border-color: #11aaff;
}

.unsubscribe-button {
    background: #11aaff;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.unsubscribe-button:hover {
    transform: translateY(-2px);
}

/* Mobile styles for unsubscribe page */
@media (max-width: 768px) {
    .unsubscribe-container {
        padding: 2rem;
    }

    .unsubscribe-confirmation h1,
    .unsubscribe-form h1 {
        font-size: 1.75rem;
    }

    .unsubscribe-confirmation p {
        font-size: 1rem;
    }
}

/* Articles page styles */
.article-hero {
    position: relative;
    width: 100%;
    max-width: 2000px;
    height: 800px;
    margin: 0 auto;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), var(--article-hero-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.article-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 3rem;
    color: #ffffff;
    text-align: left;
}

.article-hero__title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 1024px) {
    .article-hero {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .article-hero {
        height: 60vh;
    }

    .article-hero__content {
        padding: 2rem;
    }
}

.articles-grid {
    padding: 4rem 2rem;
    background-color: white;
}

.articles-container {
    width: 75vw;
    margin: 0 auto;
}

/* Primary Article */
.primary-article {
    margin-bottom: 4rem;
}

.primary-article .article-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.primary-article .article-card:hover {
    transform: translateY(-2px);
}

.primary-article .article-image {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.primary-article .article-content {
    padding: 1vh 2rem 2rem 2rem;
}

.primary-article .article-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem 0;
    line-height: 1.2;
    color: black;
}

/* Secondary Articles */
.secondary-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.secondary-articles .article-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.secondary-articles .article-card:hover {
    transform: translateY(-2px);
}

.secondary-articles .article-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.secondary-articles .article-content {
    padding: 1vh 1.5rem 1.5rem 1.5rem;
}

.secondary-articles .article-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0.75rem 0;
    line-height: 1.2;
}

/* Other Articles (Tertiary) */
.other-articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.other-articles .article-card {
    display: flex;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.other-articles .article-card:hover {
    transform: translateY(-2px);
}

.other-articles .article-image {
    width: 40%;
    min-width: 300px;
    height: auto;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.other-articles .article-content {
    padding: 1vh 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.other-articles .article-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 1rem 0;
    line-height: 1.2;
}

/* Common Article Styles */
.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-date {
    color: #11aaff;
}

.article-category {
    color: #666;
}

.article-excerpt {
    color: #666;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.no-articles {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    padding: 2rem;
}

.article-cta-card {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    margin-top: 4rem;
    margin-bottom: 5vh;
    border-radius: 30px;
    padding: 3rem;
    background: linear-gradient(315deg, rgba(17, 170, 255, 0.12), rgba(0, 0, 0, 0.65));
    color: white;
    position: relative;
    overflow: hidden;
}

.article-cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 45%);
    pointer-events: none;
}

.article-cta-card__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    flex: 1;
}

.article-cta-card__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

.article-cta-card h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-cta-card p {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

.article-cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.article-cta-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-cta-form input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    color: #262626;
}

.article-cta-form input::placeholder {
    color: #666;
}

.article-cta-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(17, 170, 255, 0.5);
}

.article-cta-card__button {
    border-radius: 999px;
    padding: 0.85rem 2.5rem;
    border: none;
    background-color: #11aaff;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    align-self: flex-start;
}

.article-cta-card__button:hover {
    transform: translateY(-2px);
    background-color: #0d8fcc;
}

.article-cta-card__media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-cta-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .article-cta-card {
        padding: 2rem;
        flex-direction: column;
    }

    .article-cta-card__media {
        order: -1;
    }

    .article-cta-card__media img {
        height: auto;
    }

    .article-cta-form-inputs {
        flex-direction: column;
    }

    .article-cta-card__button {
        width: 100%;
        align-self: stretch;
    }
}

/* ARTICLES */

/* Single Article */
.article-header-row {
	padding: 0;
}
.article-header {
	width: 100%;
	display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Aligns the content to the bottom */
	background-position: top; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    margin-bottom: 2vh;
   	color: white;
}

.article-header-content {
    margin-top: auto;
	padding: 3vh 1vh;
	max-width: 70%;
	color: white;
}

.article-header-content h1 {
	font-size: 1.8rem;
	font-weight: 600;
	background-color: rgba(0, 0, 0, 0.55);
	padding: 1vh 2vh;
}

.article-header-content h2 {
	font-size: 1.2rem;
	font-weight: 600;
	background-color: rgba(0, 0, 0, 0.55);
	padding: 1vh 2vh;
}

.article-byline {
    width: 100%;
	text-align: left;
	font-style: italic;
}

.article-byline p {
	margin-bottom: 0px;
}

.article-content p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.article-content h2 {
    padding-top: 1vh;
    padding-bottom: 1vh;
    font-weight: 600;
    color: #11aaff;
}

.article-content h3 {
    padding-top: 1vh;
    font-size: 1.6rem;
    font-weight: 600;
}

.article-content h4 {
    padding-top: 3vh;
    font-size: 1.4rem;
    font-weight: 600;
}



.lead-paragraph {
	font-size: 1.6rem !important;
	font-weight: 600;
}

/* End of Single Article */

/* Mobile styles for Articles page */
@media (max-width: 768px) {
    .articles-grid {
        padding: 2rem 1rem;
    }

    .articles-container {
        width: 90vw;
    }

    .primary-article .article-image {
        height: 300px;
    }

    .primary-article .article-title {
        font-size: 2rem;
    }

    .secondary-articles {
        grid-template-columns: 1fr;
    }

    .other-articles {
        grid-template-columns: 1fr;
    }

    .other-articles .article-card {
        flex-direction: column;
    }

    .other-articles .article-image {
        width: 100%;
        min-width: unset;
        height: 250px;
    }

    .secondary-articles .article-image {
        height: 250px;
    }
} 