/* ===================================
   CSS Variables / Design Tokens
   =================================== */
:root {
    /* Colors - UPDATED to be more vibrant and web-safe */
    --color-primary: #2F6F73;        /* calmer, slightly greener teal */
    --color-primary-dark: #1F5558;   /* deeper teal */
    --color-primary-light: #4D8E90;  /* soft teal */

    --color-accent: #F5A962;
    --color-accent-dark: #E39546;
    --color-accent-light: #F8BD84;

    --color-text-dark: #21323A;      /* less blue, still crisp */
    --color-text-light: #F6FAF9;
    --color-text-muted: #667A76;     /* warmer grey */

    --color-bg-light: #FFFFFF;
    --color-bg-off-white: #F7FAF9;   /* slightly eucalyptus-tinted */
    --color-bg-cream: #FFF9F2;
    --color-bg-dark: #1F3D3A;        /* footer + dark blocks */
    
    /* Typography - UPDATED to Playfair Display */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 2.5rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); font-weight: 600; }

p {
    margin-bottom: var(--spacing-md);
}

p:last-child {
    margin-bottom: 0;
}

em {
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
}

strong {
    font-weight: 600;
    color: var(--color-primary-dark);
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===================================
   Layout Components
   =================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Navigation
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    text-shadow: 0 1px 2px rgba(61, 124, 142, 0.1);
    line-height: 1.3;
}

.nav-brand-main {
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.nav-brand-separator {
    font-weight: 400;
    font-style: italic;
    font-size: 0.9em;
    opacity: 0.7;
}

.nav-brand-sub {
    font-weight: 500;
}

.nav-brand-nowrap {
    display: inline-block;
    white-space: nowrap;
}

.nav-brand:hover {
    color: var(--color-primary-dark);
    text-shadow: 0 2px 8px rgba(61, 124, 142, 0.2);
}

.nav-brand:hover .nav-brand-main {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    padding-top:5px;
}

.nav-links a {
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-accent);
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image:
        linear-gradient(
            135deg,
            rgba(18, 58, 63, 0.25) 0%,
            rgba(10, 36, 42, 0.95) 100%
        ),
        url('images/lion_king_enhanced.jpg');

    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
}


.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 169, 98, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245, 169, 98, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(44, 62, 80, 0.45);
}

.hero-title-main {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease-out;
}

.hero-title-sub {
    font-size: clamp(1.25rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text-light);
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

/* ===================================
   Tagline Section
   =================================== */
.tagline {
    padding: var(--spacing-2xl) 0;
    background: var(--color-bg-cream);
    text-align: center;
}

.tagline-text {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
}

/* ===================================
   Section Styles
   =================================== */
.section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section:nth-child(even) {
    background: linear-gradient(to bottom, #F2F6F5, #EEF3F2);
}

.section-content {
    display: grid;
    gap: var(--spacing-xl);
    align-items: center;
}

.section-content-center {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: center;
    text-align: center;
}

.section-title {
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-lg);
}

.section-title-center {
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    font-size: clamp(2rem, 5vw, 3rem);
}

.section-body p {
    margin-bottom: var(--spacing-md);
}

.section-body p:last-child {
    margin-bottom: 0;
}

/* Badge */
.badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    background: var(--color-primary);
    color: var(--color-text-light);
    border-radius: var(--border-radius-full);
    margin-left: var(--spacing-sm);
    vertical-align: middle;
}

/* Image Circles */
.image-circle {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-slow);
}

.image-circle:hover {
    transform: scale(1.05);
}

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

/* ===================================
   Timetable Section
   =================================== */
.section-timetable {
    background: var(--color-bg-cream) !important;
}

.timetable-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.timetable-location {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-primary);
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.timetable-title {
    color: var(--color-primary-dark);
    font-weight: 700;
}

.timetable-grid {
    display: grid;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.timetable-card {
    background: var(--color-bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.timetable-card-title {
    font-size: var(--font-size-xl);
    color: var(--color-primary-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.timetable-schedule {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(to bottom, #F2F6F5, #EEF3F2);
    border-radius: var(--border-radius);
}

.schedule-day {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(61, 124, 142, 0.1);
}   

.schedule-day:last-child {
    border-bottom: none;
}

.schedule-day h4 {
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: var(--font-size-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-xs);
}

.schedule-time {
    font-size: var(--font-size-lg);
    color: var(--color-text-dark);
    font-weight: 500;
    margin-bottom: var(--spacing-xs);
}

.schedule-note {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-style: italic;
}

/* Class Schedule Specific */
.class-schedule {
    margin-bottom: var(--spacing-xl);
}

.schedule-subtitle {
    color: var(--color-primary);
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.schedule-days {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.schedule-times {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: linear-gradient(to bottom, #F2F6F5, #EEF3F2);
    border-radius: var(--border-radius);
}

.schedule-times li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(61, 124, 142, 0.1);
}

.schedule-times li:last-child {
    border-bottom: none;
}

.schedule-times .time {
    font-weight: 500;
    color: var(--color-text-dark);
}

.schedule-times .age {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* Timetable Pricing */
.timetable-pricing {
    margin-bottom: var(--spacing-xl);
}

.pricing-note {
    font-style: italic;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.pricing-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: linear-gradient(to bottom, #F2F6F5, #EEF3F2);
    border-radius: var(--border-radius);
}

.pricing-list li {
    padding: var(--spacing-sm);
    background: transparent;
    border-radius: var(--border-radius);
    text-align: center;
    border-bottom: 1px solid rgba(61, 124, 142, 0.1);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.timetable-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ===================================
   Our Story Section
   =================================== */
.section-story {
    background: var(--color-bg-light) !important;
}

.story-grid {
    display: grid;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.story-card {
    background: linear-gradient(to bottom, #F2F6F5, #EEF3F2);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.story-card p {
    line-height: 1.8;
    color: var(--color-text-dark);
}

/* ===================================
   Gallery Section
   =================================== */
.section-gallery {
    background: var(--color-bg-light) !important;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.section-gallery .section-title-center {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.gallery-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-xl) 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.gallery-track {
    display: flex;
    gap: var(--spacing-xl);
    will-change: transform;
}

.gallery-carousel:hover .gallery-track {
    /* Pause handled by JavaScript */
}

/* Remove old animation keyframes - no longer needed */

.gallery-item {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.gallery-circle {
    width: 390px;
    height: 390px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 4px solid var(--color-bg-light);
    transition: all var(--transition-base);
}

.gallery-circle:hover {
    box-shadow: 0 25px 50px -12px rgba(47, 111, 115, 0.25);
}

.gallery-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover .gallery-circle img {
    transform: scale(1.1);
}

/* ===================================
   Celebration Section
   =================================== */
.section-celebration {
    background: var(--color-bg-dark) !important;
    color: var(--color-text-light);
}

.celebration-title {
    color: var(--color-accent-light);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.celebration-grid {
    display: grid;
    gap: var(--spacing-2xl);
}

.celebration-card {
    text-align: center;
}

.celebration-image {
    margin-bottom: var(--spacing-lg);
}

.celebration-card-title {
    color: var(--color-accent-light);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
}

.celebration-description {
    color: rgba(248, 249, 250, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: var(--border-radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    letter-spacing: 0.02em;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--color-bg-light);
    color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-disabled:hover {
    transform: none;
}

/* ===================================
   Contact Section
   =================================== */
.section-contact {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-bg-dark);
}

.contact-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(61, 124, 142, 0.3),
        rgba(44, 62, 80, 0.3)
    ),
    url('images/footer_enhanced.jpg') center 30% / cover;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-text-light);
}

.contact-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-accent-light);
    margin-bottom: var(--spacing-md);
    text-shadow:
        0 2px 6px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(44, 62, 80, 0.45);
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-style: italic;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.contact-info {
    margin: var(--spacing-lg);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: var(--spacing-2xl) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-accent-light);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.3;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.footer-icon {
    flex-shrink: 0;
    color: var(--color-accent-light);
    opacity: 0.8;
}

.footer-info-item a {
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.footer-info-item a:hover {
    color: var(--color-accent-light);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.footer-creator {
    padding: var(--spacing-md);
    background: rgba(248, 249, 250, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-accent-light);
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.footer-creator-image {
    flex-shrink: 0;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-slow);
}

.footer-creator-image:hover {
    transform: scale(1.05);
}

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

.footer-creator-info {
    flex: 1;
}

.footer-creator-name {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-accent-light);
    margin: 0 0 var(--spacing-xs) 0;
}

.footer-creator-title {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    margin: 0;
    opacity: 0.9;
}

.footer-creator-credential {
    font-size: var(--font-size-xs);
    color: var(--color-text-light);
    margin: var(--spacing-xs) 0 0 0;
    opacity: 0.7;
    font-style: italic;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-social-label {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    opacity: 0.8;
    margin: 0;
}

.footer-social-handle {
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-style: italic;
    color: var(--color-accent-light);
    margin: 0 0 var(--spacing-sm) 0;
}

.footer-social-icons {
    display: flex;
    gap: var(--spacing-md);
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text-light);
    background: rgba(248, 249, 250, 0.1);
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.footer-social-icons a:hover {
    background: var(--color-accent);
    color: var(--color-text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Copyright Section
   =================================== */
.copyright-section {
    background: #0F1419;
    color: var(--color-text-light);
    padding: var(--spacing-md) 0;
}

.copyright-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    opacity: 0.5;
    margin: 0;
    text-align: center;
}

/* ===================================
   Scroll Animations
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ===================================
   Responsive Design - Tablet
   =================================== */
@media (min-width: 768px) {
    .section-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    .section-content-reverse {
        direction: rtl;
    }
    
    .section-content-reverse > * {
        direction: ltr;
    }
    
    .nav-brand {
        font-size: var(--font-size-base);
    }
    
    .container {
        padding: 0 var(--spacing-xl);
    }

    .timetable-grid {
        grid-template-columns: 1fr 1fr;
    }

    .celebration-grid {
        grid-template-columns: 1fr 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-2xl);
    }
    
    .footer-right {
        align-items: flex-end;
        text-align: right;
    }
    
    .footer-social {
        align-items: flex-end;
    }
    
    .footer-social-icons {
        justify-content: flex-end;
    }
}

/* ===================================
   Responsive Design - Desktop
   =================================== */
@media (min-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
    
    .hero {
        min-height: 700px;
    }
    
    .image-circle {
        max-width: 450px;
    }
}

/* ===================================
   Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* ===================================
   Mobile Responsive - Gallery
   =================================== */
@media (max-width: 768px) {
    .gallery-circle {
        width: 325px;
        height: 325px;
    }
    
    .gallery-track {
        animation-duration: 30s;
    }
}

@media (max-width: 480px) {
    .gallery-circle {
        width: 260px;
        height: 260px;
    }
    
    .gallery-track {
        gap: var(--spacing-lg);
        animation-duration: 25s;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .nav,
    .footer-social {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
