/* 
=================================
JollyTrek.click - Adventure Gaming Theme
Version: 1.0.0
Author: GitHub Copilot
=================================
*/

/* === Custom Variables === */
:root {
    /* Primary Color Palette - Adventure Theme */
    --primary: #4E937A;       /* Forest Green */
    --secondary: #E5A343;     /* Golden Sunset */
    --accent: #D16666;        /* Adventure Red */
    --dark: #2B4141;          /* Deep Forest */
    --light: #F7F3E3;         /* Parchment */
    
    /* Text Colors */
    --text-primary: #2B4141;  /* Dark Text */
    --text-secondary: #596869; /* Medium Gray */
    --text-light: #F7F3E3;    /* Light Text */
    
    /* UI Elements */
    --success: #54BF90;       /* Success Green */
    --info: #5790C1;          /* Info Blue */
    --warning: #E5A343;       /* Warning Yellow */
    --danger: #D16666;        /* Danger Red */
    
    /* Background Elements */
    --bg-dark: #2B4141;       /* Dark Background */
    --bg-light: #F7F3E3;      /* Light Background */
    --bg-medium: #E8E4D4;     /* Medium Background */
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(43, 65, 65, 0.08);
    --shadow-md: 0 4px 8px rgba(43, 65, 65, 0.12);
    --shadow-lg: 0 8px 16px rgba(43, 65, 65, 0.16);
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Quicksand', sans-serif;
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
}

/* === Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* === Button Styles === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--text-light);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: var(--font-secondary);
}

.btn:hover {
    background-color: var(--dark);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #d69530;
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--text-light);
}


/* === Header + Navbar Styles (redesigned) === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(180deg, rgba(247,243,227,0.95) 0%, rgba(247,243,227,0.88) 100%);
    backdrop-filter: blur(6px);
    box-shadow: 0 6px 18px rgba(43,41,41,0.08);
    z-index: 1100;
    transition: padding 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(43,41,41,0.12);
}

.header-content {
    display: flex;
    justify-content: center; /* center everything horizontally */
    align-items: center;
    gap: 40px;
}

.logo a {
    display: flex;
    align-items: center;
    color: var(--dark);
}

.logo img {
    height: 44px;
    margin-right: 12px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 0.6px;
}

.logo-text span {
    color: var(--primary);
}


/* === Navigation === */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-family: var(--font-secondary);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--dark);
    border-radius: 999px; /* pill */
    background: transparent;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.nav-link:hover {
    transform: translateY(-3px);
}

.nav-link.active {
    background: linear-gradient(90deg, rgba(78,147,122,0.12), rgba(229,163,67,0.08));
    color: var(--primary);
}

.nav-link::after { content: none; }

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(43,41,41,0.06);
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 18px;
    color: var(--dark);
    cursor: pointer;
}

/* === Hero Section === */
.hero {
    position: relative;
    height: 600px;
    background-image: linear-gradient(to bottom right, rgba(43, 65, 65, 0.35), rgba(78, 147, 122, 0.35));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

/* Dark overlay to improve contrast over bright background images */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; /* above the overlay */
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* === Games Section === */
.games-section {
    background-color: var(--bg-medium);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-header p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

.game-card {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.game-frame {
    width: 100%;
    height: 500px;
    border: none;
}

.game-content {
    padding: 20px;
}

.game-content h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.game-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.game-cta {
    text-align: center;
    margin-top: 40px;
}

/* === Features Section === */
.features-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(78, 147, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 28px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: var(--primary);
    color: var(--text-light);
}

.feature-content h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-content p {
    color: var(--text-secondary);
}

/* === About Section === */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-medium);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.about-text p {
    margin-top: 25px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    background-color: rgba(247, 243, 227, 0.7);
    padding: 15px;
    border-radius: var(--radius-md);
}

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Testimonials Section === */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 80px;
    color: rgba(78, 147, 122, 0.1);
    line-height: 1;
    font-family: serif;
}

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

.testimonial-text {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.author-info p {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* === CTA Section === */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* === Page Header === */
.page-header {
    background-color: var(--bg-dark);
    padding: 60px 0;
    text-align: center;
    color: var(--text-light);
    margin-top: 80px;
}

.page-header h1 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: var(--font-size-sm);
}

.breadcrumbs a {
    color: var(--secondary);
}

.breadcrumbs span {
    color: var(--text-light);
    opacity: 0.7;
}

/* === Contact Section === */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.contact-details {
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(78, 147, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary);
}

.contact-text h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-text p, .contact-text a {
    color: var(--text-secondary);
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(78, 147, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: var(--text-light);
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(89, 104, 105, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(78, 147, 122, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* === FAQ Section === */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-medium);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark);
    background-color: rgba(247, 243, 227, 0.7);
}

.faq-question i {
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-secondary);
}

.faq-item.active .faq-question {
    background-color: var(--primary);
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* === Legal Section === */
.legal-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.updated-date {
    display: block;
    margin-bottom: 30px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.legal-content h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.legal-content ul, .legal-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.legal-content ul li {
    list-style-type: disc;
}

.legal-content ol li {
    list-style-type: decimal;
}

.notice-box {
    background-color: rgba(78, 147, 122, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.notice-box p {
    margin-bottom: 0;
}

.notice-primary {
    background-color: rgba(78, 147, 122, 0.1);
    border-left-color: var(--primary);
}

.notice-secondary {
    background-color: rgba(229, 163, 67, 0.1);
    border-left-color: var(--secondary);
}

.contact-info {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.contact-info li i {
    color: var(--primary);
    margin-right: 10px;
}

.intro-text {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* === Footer === */
.footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    grid-column: 1;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    grid-column: 2;
}

.footer-column h3 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--secondary);
    opacity: 1;
}

.footer-subscribe {
    grid-column: 3;
}

.subscribe-form {
    display: flex;
    margin-top: 20px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-primary);
    font-size: var(--font-size-sm);
}

.subscribe-form button {
    padding: 10px 15px;
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background-color: #d69530;
}

.disclaimer-card {
    background-color: rgba(247, 243, 227, 0.1);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.disclaimer-card p {
    margin-bottom: 0;
    font-size: var(--font-size-sm);
    opacity: 0.9;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: var(--font-size-sm);
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0;
}

/* === Age Verification Modal === */
.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.age-verification.active {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    max-width: 500px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.age-verification-logo {
    margin-bottom: 20px;
}

.age-verification-logo img {
    height: 60px;
}

.age-verification h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.age-verification p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.age-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* === Responsive Styles === */
@media screen and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        height: 500px;
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand, .footer-links, .footer-subscribe {
        grid-column: auto;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    /* use header height variable so mobile menu sits just below header */
    :root { --header-height: 72px; }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-light);
        flex-direction: column;
        padding: 18px 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-8px) scaleY(0.98);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
        z-index: 1090;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: var(--font-size-2xl);
    }
    
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form input {
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
    }
    
    .subscribe-form button {
        border-radius: var(--radius-sm);
    }
}