/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --clr-bg: #F5F3F4;   /* Accent 2 - near-white background */
    --clr-dark: #1a1a2e;
    --clr-accent: #367FBF;   /* Primary - main brand color */
    --clr-sub-accent: #9CBFDB;   /* Sub-primary - lighter blue highlights */
    --clr-secondary: #488A80;   /* Secondary teal accent */
    --clr-accent-dark: #2a6396;   /* Darker primary for hover/active states */
    --clr-text: #2c2c2c;
    --clr-text-light: #6b6b6b;
    --clr-white: #ffffff;
    --clr-card: #ffffff;
    --clr-footer-bg: #1a1a2e;
    --clr-footer-text: #c8c8d0;
    --clr-border: #D4D0D1;   /* Accent 1 - light gray for borders/dividers */
    --header-height: 70px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--clr-dark);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-left {
    flex-shrink: 0;
}

.header-right {
    flex-shrink: 0;
}

.nav-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header.sticky {
    position: fixed;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .logo-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--clr-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--clr-accent);
    background: rgba(54, 127, 191, 0.1);
}

.logo-text {
    background: linear-gradient(to bottom, #ffffff 0%, #0b1e3d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav a {
    color: var(--clr-white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

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

.nav a:hover::after {
    width: 60%;
}

.nav a.active {
    color: var(--clr-accent);
}

.nav a.active::after {
    width: 60%;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(54, 127, 191, 0.15);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--clr-accent);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--clr-accent);
    transition: var(--transition);
}

.social-link:hover svg {
    fill: var(--clr-dark);
}

.visit-link {
    color: var(--clr-white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.visit-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.visit-link:hover {
    color: var(--clr-accent);
}

.visit-link:hover::after {
    width: 60%;
}

.webcam-link {
    color: var(--clr-white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.webcam-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--clr-accent);
    transition: var(--transition);
}

.webcam-link:hover {
    color: var(--clr-accent);
}

.webcam-link:hover::after {
    width: 60%;
}

/* ===== WEBCAM MODAL ===== */
.webcam-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.webcam-modal.active {
    display: flex;
}

.webcam-modal-content {
    background: var(--clr-dark);
    border-radius: 12px;
    padding: 30px;
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.webcam-modal-content h3 {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.webcam-modal-content img {
    display: block;
    max-width: 100%;
    max-height: calc(90vh - 100px);
    width: auto;
    border-radius: 8px;
    margin: 0 auto;
}

.webcam-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--clr-white);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.webcam-close:hover {
    color: var(--clr-accent);
}

/* ===== HERO ===== */
.hero {
    margin-top: var(--header-height);
    min-height: calc(80vh - 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff 0%, #9CBFDB 10%, #488A80 75%, #0b1e3d 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(156, 191, 219, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(156, 191, 219, 0) 0%, transparent 60%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(80vh - 80px);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--clr-white);
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1 span {
    color: var(--clr-dark);
    font-weight: 700;
}

.hero .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--clr-dark);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.1rem;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.hero-sundial-graphic {
    width: 225px;
    height: 225px;
    margin: 40px auto 0;
    position: relative;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.2;
    }
}

.hero-sundial-graphic .ring {
    position: absolute;
    border: 2px solid rgba(11, 30, 61, 0.25);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-sundial-graphic .ring:nth-child(1) {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-width: 1.5px;
    animation-delay: 0s;
}

.hero-sundial-graphic .ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-width: 2px;
    animation-delay: -0.6s;
}

.hero-sundial-graphic .ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-width: 2.5px;
    animation-delay: -1.2s;
}

.hero-sundial-graphic .ring:nth-child(4) {
    width: 25%;
    height: 25%;
    top: 37.5%;
    left: 37.5%;
    border-width: 3px;
    animation-delay: -1.8s;
}

.hero-sundial-graphic .ring:nth-child(5) {
    width: 15%;
    height: 15%;
    top: 42.5%;
    left: 42.5%;
    border-width: 4px;
    animation-delay: -2.4s;
}

.hero-sundial-graphic .ring:nth-child(6) {
    width: 8%;
    height: 8%;
    top: 46%;
    left: 46%;
    border-width: 5px;
    animation-delay: -3.0s;
}



.hero-sundial-graphic .gnomon {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: rotate(45deg);
    transform-origin: 10.5px 105px;
    width: 3px;
    height: 50%;
    background: linear-gradient(to bottom, #ffffff, transparent);
}

.hero-sundial-graphic .gnomon-shadow {
    position: absolute;
    top: 5%;
    left: 40%;
    transform: rotate(90deg);
    transform-origin: 10px 110px;
    width: 3px;
    height: 50%;
    background: linear-gradient(to bottom, rgba(11, 30, 61, 0.4), transparent);
}

/* ===== ANALOG CLOCK ===== */
.clock-face {
    position: relative;
    width: 225px;
    height: 225px;
    margin: 40px auto 0;
}

/* Minute hand (animated) */
.hand.minute-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 2px;
    height: 40%;
    background: linear-gradient(to top, rgba(60, 55, 10, 0.7), transparent);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.1s ease-out;
}

/* Hour hand (animated) */
.hand.hour-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 3px;
    height: 28%;
    background: linear-gradient(to top, #1a1a2e, transparent);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.3s ease-out;
}

/* Seconds hand (animated) — thin, teal accent */
.hand.second-hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 1px;
    height: 42%;
    background: linear-gradient(to top, #488A80);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.05s ease-out;
}

/* Center pivot dot */
.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero .scroll-prompt {
    text-align: center;
    margin-top: auto;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    animation: scrollBounce 2s ease-in-out infinite;
}

.weather-container {
    text-align: center;
    margin-top: 100px;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}



/* ===== SECTIONS ===== */
.section {
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--clr-dark);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--clr-accent);
}

.section-header p {
    color: var(--clr-text-light);
    font-size: 1.05rem;
    margin-top: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== PHOTO PLACEHOLDER ===== */
.photo-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--clr-border) 0%, #e8e6e7 100%);
    border: 2px dashed var(--clr-accent);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.photo-placeholder:hover {
    border-color: var(--clr-accent-dark);
    background: linear-gradient(135deg, #e8e6e7 0%, #dcd9da 100%);
}

.photo-pop {
    cursor: pointer;
}

.photo-pop:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--clr-accent-dark);
    background: linear-gradient(135deg, #e8e6e7 0%, #dcd9da 100%);
}

.photo-placeholder .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    opacity: 0.5;
}

.photo-placeholder .label {
    font-size: 0.9rem;
    color: var(--clr-text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.photo-placeholder .sublabel {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    opacity: 0.6;
    margin-top: 4px;
}

.image-source {
    max-width: 1200px;
    margin: -10px auto 30px;
    padding: 12px 20px;
    font-size: 0.8rem;
    color: var(--clr-text-light);
    opacity: 0.5;
    text-align: right;
    line-height: 1.6;
}

.image-source a {
    color: var(--clr-accent);
    text-decoration: underline;
    transition: var(--transition);
}

.image-source a:hover {
    opacity: 0.8;
}

/* ===== FACT CARDS ===== */
.fact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fact-card {
    background: var(--clr-card);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 3px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.fact-card:hover::before {
    transform: scaleX(1);
}

.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.fact-card .fact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.fact-card h3 {
    font-size: 1.15rem;
    color: var(--clr-dark);
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.fact-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

.fact-card .stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--clr-accent);
    display: block;
    margin-bottom: 5px;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--clr-accent), var(--clr-secondary));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: var(--clr-card);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--clr-accent);
    border-radius: 50%;
    border: 3px solid var(--clr-bg);
    box-shadow: 0 0 0 3px rgba(54, 127, 191, 0.3);
    z-index: 1;
}

.timeline-year {
    font-size: 0.85rem;
    color: var(--clr-accent);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== MATERIALS TABLE ===== */
.materials-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: var(--clr-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.materials-table thead {
    background: linear-gradient(135deg, var(--clr-dark) 0%, #243456 100%);
}

.materials-table th {
    padding: 16px 24px;
    text-align: left;
    color: var(--clr-accent);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.materials-table td {
    padding: 14px 24px;
    border-bottom: 1px solid #eee;
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.materials-table tbody tr:hover {
    background: rgba(54, 127, 191, 0.05);
}

.materials-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== DIVIDER ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--clr-sub-accent), transparent);
    max-width: 200px;
    margin: 0 auto;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    background: var(--clr-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.contact-card .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--clr-accent), var(--clr-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--clr-dark);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--clr-footer-bg);
    color: var(--clr-footer-text);
    padding: 40px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.download-link {
    color: var(--clr-accent);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-link:hover {
    color: var(--clr-white);
}

.kiss-container {
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
}

.kiss-container:hover {
    opacity: 0.8;
}

.kiss-acronym {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--clr-sub-accent);
    letter-spacing: 8px;
    text-transform: uppercase;
    transition: var(--transition);
}

.kiss-meaning {
    font-size: 0.85rem;
    color: var(--clr-footer-text);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.kiss-meaning.visible {
    opacity: 1;
    max-height: 60px;
    margin-top: 10px;
}

.disclaimer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--clr-footer-text);
    opacity: 0.5;
    letter-spacing: 0.3px;
}

.footer-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-footer-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.badge-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--clr-white);
}

.badge-static {
    cursor: default;
}

.badge-static:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-footer-text);
}

.back-to-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-accent);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(54, 127, 191, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-3px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--clr-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

    .nav a {
        padding: 8px 12px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .section {
        padding: 60px 20px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 50px;
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .timeline-dot {
        left: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .photo-placeholder {
        height: 250px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
    position: fixed;
    top: var(--header-height);
    left: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--clr-accent), var(--clr-secondary));
    z-index: 1001;
    transition: width 0.1s linear;
}