/* ============================================
   The Nest - Women's Center Stylesheet
   Color Scheme: Dark Grey, Green, Subtle Pink
   ============================================ */

/* ============================================
   CSS Variables - Easy to edit colors
   ============================================ */
:root {
    /* Primary Colors */
    --dark-grey: #2a2a2a;
    --medium-grey: #3a3a3a;
    --light-grey: #4a4a4a;
    
    /* Accent Colors */
    --green: #4a7c59;
    --green-light: #5a9b6f;
    --green-dark: #3a6b49;
    
    /* Pink Accent */
    --pink: #c9a0a0;
    --pink-light: #d4b0b0;
    --pink-dark: #b89090;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-off-white: #f5f5f5;
    --text-light-grey: #cccccc;
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing - Mobile First */
    --section-padding: 50px 15px;
    --card-padding: 20px;
}

/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Fallback for browsers without smooth scroll support */
@supports not (scroll-behavior: smooth) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-grey);
    color: var(--text-off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base link and button styles - Mobile First */
a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

button,
a[role="button"],
input[type="button"],
input[type="submit"] {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    touch-action: manipulation;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-white);
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-light-grey);
    margin-bottom: 35px;
    font-weight: 300;
    padding: 0 5px;
}

/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 42, 0.98);
    /* Fallback for browsers without backdrop-filter support */
    background-color: rgba(42, 42, 42, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(74, 124, 89, 0.3);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .navbar {
        background-color: rgba(42, 42, 42, 0.98);
    }
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(42, 42, 42, 0.98);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    padding: 30px 0;
    gap: 20px;
    list-style: none;
    z-index: 999;
}

.nav-menu.active {
    left: 0;
}

.nav-link {
    color: var(--text-off-white);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 12px 20px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--green);
    transition: width 0.3s ease;
}

.nav-link.active {
    color: var(--green-light);
}

.nav-link.active::after {
    width: 100%;
}

.nav-link:active {
    color: var(--green-light);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video,
.hero-video-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
}

/* Fallback for browsers without object-fit support */
@supports not (object-fit: cover) {
    .hero-video,
    .hero-video-placeholder {
        width: auto;
        min-width: 100%;
        min-height: 100%;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: 
        radial-gradient(
            circle at center,
            rgba(42, 42, 42, 0.5) 0%,
            rgba(42, 42, 42, 0.3) 50%,
            rgba(42, 42, 42, 0.2) 100%
        ),
        linear-gradient(
            135deg,
            rgba(42, 42, 42, 0.6) 0%,
            rgba(74, 124, 89, 0.35) 50%,
            rgba(201, 160, 160, 0.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 0 15px;
    text-shadow: 
        2px 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-off-white);
    font-weight: 300;
    letter-spacing: 1.5px;
    padding: 0 15px;
    text-shadow: 
        1px 1px 6px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 20px;
}

.hero-join-wrapper {
    margin-top: 20px;
    padding: 0 15px;
}

.hero-join-button {
    display: block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 45px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.hero-join-button:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

/* ============================================
   Schedule Section
   ============================================ */
.schedule-section {
    padding: var(--section-padding);
    padding-top: 90px;
    padding-bottom: 70px;
    background-color: var(--dark-grey);
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(74, 124, 89, 0.3) 1px, transparent 0);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}

.schedule-intro {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light-grey);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    font-weight: 300;
    padding: 0 5px;
}

.schedule-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 8px;
    min-height: auto;
}

/* Schedule Card */
.schedule-card {
    background: linear-gradient(135deg, var(--medium-grey) 0%, var(--light-grey) 100%);
    border-radius: 4px;
    padding: 10px 6px 10px 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(74, 124, 89, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(10px)) {
    .schedule-card {
        background: linear-gradient(135deg, rgba(58, 58, 58, 0.98) 0%, rgba(74, 74, 74, 0.98) 100%);
    }
}

.schedule-item {
    display: flex;
    flex-direction: row;
    gap: 6px;
    padding: 6px 4px 6px 5px;
    margin-bottom: 3px;
    background-color: rgba(42, 42, 42, 0.5);
    border-radius: 3px;
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
    align-items: center;
    line-height: 1.1;
}

/* Disable hover effects on touch devices */
@media (hover: hover) {
    .schedule-item:hover {
        transform: translateX(5px);
        background-color: rgba(74, 124, 89, 0.2);
        border-left-color: var(--green-light);
    }
}

.schedule-item:active {
    background-color: rgba(74, 124, 89, 0.15);
}

.schedule-item.lunch {
    border-left-color: var(--pink);
}

.schedule-item.lunch:hover {
    border-left-color: var(--pink-light);
}

.schedule-item:last-child {
    margin-bottom: 0;
}

/* Date Divider */
.date-divider {
    margin-top: 8px;
    margin-bottom: 4px;
    padding: 5px 4px 5px 6px;
    background: linear-gradient(135deg, rgba(201, 160, 160, 0.3) 0%, rgba(201, 160, 160, 0.2) 100%);
    border-radius: 3px;
    border-left: 4px solid var(--pink);
    position: relative;
}

.date-divider:first-child {
    margin-top: 0;
}

.date-title {
    font-size: 0.95rem;
    color: var(--text-white);
    margin: 0;
    font-weight: 600;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.time {
    font-weight: 600;
    color: var(--green-light);
    min-width: 45px;
    font-size: 0.75rem;
    line-height: 1.1;
    flex-shrink: 0;
}

.activity {
    flex: 1;
}

.activity h3 {
    font-size: 0.8rem;
    margin-bottom: 0;
    color: var(--text-white);
    line-height: 1.1;
}

.activity p {
    font-size: 0.9rem;
    color: var(--text-light-grey);
    font-weight: 300;
}

.instructor-note {
    color: var(--pink-light) !important;
    font-style: italic;
}

/* Schedule status (loading / error) */
.schedule-status {
    padding: 14px 12px;
    margin: 0;
    border-radius: 10px;
    background-color: rgba(42, 42, 42, 0.5);
    border-left: 4px solid var(--green);
    color: var(--text-light-grey);
    font-size: 0.9rem;
    line-height: 1.4;
}

.schedule-status.schedule-loading {
    border-left-color: var(--green);
}

.schedule-status.schedule-error {
    border-left-color: var(--pink);
    color: var(--text-off-white);
}


/* ============================================
   Activities Section
   ============================================ */
.activities-section {
    padding: var(--section-padding);
    padding-top: 100px;
    padding-bottom: 100px;
    background: linear-gradient(180deg, var(--dark-grey) 0%, var(--medium-grey) 100%);
}

.activities-section .section-title {
    font-size: 2.75rem;
    margin-bottom: 35px;
}

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

.activity-card {
    background-color: var(--light-grey);
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.activity-card:hover {
    transform: translateY(-10px);
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.3);
    background-color: rgba(74, 124, 89, 0.1);
}

.activity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.activity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-white);
}

.activity-card p {
    font-size: 0.95rem;
    color: var(--text-light-grey);
    line-height: 1.7;
}


/* ============================================
   Contact Section
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    padding-top: 70px;
    padding-bottom: 50px;
    background: linear-gradient(180deg, var(--dark-grey) 0%, var(--medium-grey) 100%);
}

.contact-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 18px 15px;
    background-color: rgba(42, 42, 42, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--green);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
    min-height: 60px;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

/* Disable hover effects on touch devices */
@media (hover: hover) {
    .contact-item:hover {
        transform: translateX(5px);
        background-color: rgba(74, 124, 89, 0.2);
        border-left-color: var(--green-light);
    }
    
    .contact-item-whatsapp:hover {
        background-color: rgba(37, 211, 102, 0.15);
        border-left-color: #20BA5A;
    }
    
    .contact-item-email:hover {
        background-color: rgba(74, 124, 89, 0.2);
        border-left-color: var(--green-light);
    }
    
    .contact-item-email:hover .contact-details a {
        color: var(--text-white);
    }
    
    .contact-details a:hover {
        color: var(--green-light);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--green-light);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .hero-join-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 32px rgba(74, 124, 89, 0.6);
        background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
    }
    
    .join-now-button:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 32px rgba(74, 124, 89, 0.6);
        background: linear-gradient(135deg, var(--green-light) 0%, var(--green) 100%);
    }
    
    .social-link:hover {
        background-color: var(--green);
        transform: translateY(-8px) scale(1.1);
        box-shadow: 0 12px 32px rgba(74, 124, 89, 0.5);
    }
    
    .social-link-whatsapp:hover {
        background-color: #25D366;
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    }
    
    .social-link-maps:hover {
        background-color: #4285F4;
        box-shadow: 0 12px 32px rgba(66, 133, 244, 0.5);
    }
}

.contact-item:active {
    background-color: rgba(74, 124, 89, 0.15);
    transform: scale(0.98);
}

.contact-item-whatsapp {
    border-left-color: #25D366;
    cursor: pointer;
}

.contact-icon-whatsapp {
    color: #25D366;
}

.contact-icon-whatsapp svg {
    width: 28px;
    height: 28px;
}

.contact-icon-email {
    color: var(--green-light);
}

.contact-icon-email svg {
    width: 28px;
    height: 28px;
}

.contact-icon {
    font-size: 1.6rem;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-email {
    border-left-color: var(--green);
    cursor: pointer;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--green-light);
}

.contact-details p {
    color: var(--text-light-grey);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
    word-break: break-word;
}

.contact-details a {
    color: var(--text-light-grey);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
    display: inline-block;
}

.contact-item-email .contact-details a {
    color: var(--text-light-grey);
}


/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.social-link {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey);
    border-radius: 50%;
    color: var(--text-off-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.social-link svg {
    width: 34px;
    height: 34px;
}

.social-link:active {
    transform: scale(0.95);
    background-color: var(--green);
}

/* Join Now Button */
.join-now-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.join-now-button {
    display: block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 45px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.4);
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-sizing: border-box;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.join-now-button:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background-color: var(--dark-grey);
    padding: 25px 15px;
    text-align: center;
    border-top: 1px solid rgba(74, 124, 89, 0.3);
}

.footer p {
    color: var(--text-light-grey);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--pink-light);
    font-style: italic;
    font-size: 0.8rem;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll animations will be handled by JavaScript */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design - Mobile First
   ============================================ */

/* Hamburger active state */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet and up (601px and above) */
@media (min-width: 601px) {
    :root {
        --section-padding: 60px 20px;
        --card-padding: 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0;
    }
    
    /* Navigation */
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        position: static;
        flex-direction: row;
        background-color: transparent;
        width: auto;
        padding: 0;
        gap: 35px;
    }
    
    .nav-link {
        padding: 0;
        min-height: auto;
        display: inline-block;
    }
    
    .hamburger {
        display: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
        padding: 0;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
        padding: 0;
    }
    
    .hero-join-wrapper {
        margin-top: 25px;
        padding: 0;
    }
    
    .hero-join-button {
        display: inline-block;
        padding: 18px 50px;
        font-size: 1.2rem;
        min-width: 200px;
        width: auto;
        max-width: none;
    }
    
    /* Schedule */
    .schedule-section {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .schedule-intro {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .schedule-wrapper {
        padding: 0 12px;
        margin: 30px auto;
    }
    
    .schedule-card {
        padding: 15px 8px 15px 12px;
        border-radius: 12px;
    }
    
    .date-divider {
        margin-top: 15px;
        margin-bottom: 10px;
        padding: 8px 6px 8px 10px;
        border-radius: 8px;
    }
    
    .date-title {
        font-size: 1.05rem;
        line-height: 1.2;
    }
    
    .schedule-item {
        gap: 8px;
        padding: 8px 5px 8px 6px;
        margin-bottom: 4px;
        border-radius: 8px;
    }
    
    .schedule-item:hover {
        transform: translateX(5px);
    }
    
    .time {
        min-width: 50px;
        font-size: 0.8rem;
    }
    
    .activity h3 {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        font-size: 1.8rem;
        min-width: 45px;
    }
    
    .contact-icon-whatsapp svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon-email svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 0.95rem;
    }
    
    /* Social Links */
    .social-links {
        margin-top: 50px;
        gap: 30px;
    }
    
    .social-link {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }
    
    .social-link svg {
        width: 40px;
        height: 40px;
    }
    
    /* Join Now Button */
    .join-now-wrapper {
        margin-top: 50px;
        margin-bottom: 30px;
        padding: 0;
    }
    
    .join-now-button {
        display: inline-block;
        padding: 18px 50px;
        font-size: 1.2rem;
        min-width: 200px;
        width: auto;
        max-width: none;
    }
    
    /* Footer */
    .footer {
        padding: 30px 20px;
    }
    
    .footer p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
}

/* Desktop (769px and above) */
@media (min-width: 769px) {

    :root {
        --section-padding: 80px 20px;
        --card-padding: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }
    
    /* Hero */
    .hero-title {
        font-size: 6rem;
        letter-spacing: 8px;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }
    
    .hero-join-wrapper {
        margin-top: 30px;
    }
    
    .hero-join-button {
        padding: 18px 50px;
        font-size: 1.3rem;
        min-width: 200px;
    }
    
    /* Schedule */
    .schedule-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    
    .schedule-intro {
        font-size: 1.1rem;
        margin-bottom: 50px;
        line-height: 1.8;
    }
    
    .schedule-wrapper {
        padding: 0 60px;
        margin: 80px auto;
        min-height: 800px;
    }
    
    .schedule-card {
        padding: 50px 60px;
        border-radius: 20px;
    }
    
    .date-divider {
        margin-top: 40px;
        margin-bottom: 25px;
        padding: 20px 30px;
        border-radius: 12px;
    }
    
    .date-title {
        font-size: 1.4rem;
    }
    
    .schedule-item {
        gap: 25px;
        padding: 25px 30px;
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .time {
        min-width: 140px;
        font-size: 0.95rem;
    }
    
    .activity h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    /* Contact */
    .contact-section {
        padding-top: 100px;
        padding-bottom: 80px;
    }
    
    .contact-info {
        gap: 30px;
    }
    
    .contact-item {
        padding: 25px;
        gap: 20px;
    }
    
    .contact-icon {
        font-size: 2rem;
        min-width: 50px;
    }
    
    .contact-icon-whatsapp svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon-email svg {
        width: 32px;
        height: 32px;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .contact-details p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Social Links */
    .social-links {
        margin-top: 60px;
        gap: 30px;
    }
    
    .social-link {
        width: 80px;
        height: 80px;
        min-width: 80px;
        min-height: 80px;
    }
    
    .social-link svg {
        width: 40px;
        height: 40px;
    }
    
    /* Join Now Button */
    .join-now-wrapper {
        margin-top: 50px;
        margin-bottom: 30px;
    }
    
    .join-now-button {
        padding: 18px 50px;
        font-size: 1.3rem;
        min-width: 200px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 20px;
    }
    
    .footer p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
}

/* Large Desktop (1400px and above) */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .schedule-wrapper {
        max-width: 1600px;
        padding: 0 80px;
    }
    
    .schedule-card {
        max-width: 900px;
        padding: 60px 70px;
    }
}

