:root {
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-muted: #888888;
    --accent: #d4af37; /* Golden cinematic accent */
    --font-main: 'Bebas Neue', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 110%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
    mix-blend-mode: difference;
}
.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar.menu-open {
    background: var(--bg-primary) !important;
    mix-blend-mode: normal !important;
}
.logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: var(--text-muted);
}
.hamburger {
    display: none;
}
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    font-family: inherit;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.lang-btn:hover, .lang-btn.active {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s linear infinite alternate;
}
.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(5,5,5,1) 0%, rgba(5,5,5,0.3) 100%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 2rem;
}
.hero h1 {
    font-size: 5rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.1rem;
}

/* Animations */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Animated Abstract Grading Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 200vw;
    height: 200vh;
    background-image: url('assets/abstract_light_leak.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: -10;
    pointer-events: none;
    mix-blend-mode: color-dodge;
    animation: floatingBg 40s linear infinite alternate;
}

@keyframes floatingBg {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10vw, -10vh) scale(1.3); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 {
    animation-delay: 0.3s;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections */
.section {
    padding: 10rem 4rem;
}
.section-darker {
    background-color: var(--bg-secondary);
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.text-center {
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 0.1rem;
    margin-bottom: 4rem;
}

/* Portfolio Grid */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.grid-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    height: 60vh;
}
.grid-item.single-col-span {
    grid-column: span 2;
    height: 70vh;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

/* Video Hover Previews */
.hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}
.grid-item:hover .hover-video,
.project-card:hover .hover-video {
    opacity: 1;
}
.grid-item:hover img {
    transform: scale(1.05);
}
.grid-item:hover .item-overlay {
    opacity: 1;
}
.item-overlay h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}
.grid-item:hover .item-overlay h2 {
    transform: translateY(0);
}
.item-overlay p {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.1rem;
    margin-top: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.5s ease 0.1s;
}
.grid-item:hover .item-overlay p {
    transform: translateY(0);
}

/* Extracted Color Palette Hover */
.color-palette {
    display: flex;
    gap: 6px;
    margin-top: 1rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.2s;
}
.grid-item:hover .color-palette {
    opacity: 1;
    transform: translateY(0);
}
.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: crosshair;
}
.color-swatch:hover {
    transform: scale(1.4) translateY(-2px);
    border-color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 10;
}

/* Grading Demo - Before/After Slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    user-select: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.img-after, .img-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.img-before {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
    /* Simulate a completely flat "Log" profile look */
    filter: contrast(0.6) brightness(1.2) saturate(0.3) sepia(0.05); 
}
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #fff;
    pointer-events: none;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-handle::after {
    content: '↔';
    background: rgba(255,255,255,0.9);
    color: #000;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.slider-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 10;
}

/* Slider Carousel Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 10;
}
.prev-btn {
    left: -30px;
}
.next-btn {
    right: -30px;
}
.nav-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* Footer */
.footer {
    padding: 8rem 4rem 4rem;
    text-align: center;
    background: #020202;
}
.footer h2 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 3rem;
}
.btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--text-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.btn:hover {
    color: #000;
    border-color: var(--text-primary);
}
.socials {
    margin: 4rem 0 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
}
.socials span {
    cursor: pointer;
    transition: color 0.3s;
    margin: 0 0.5rem;
}
.socials span:hover {
    color: var(--text-primary);
}
.copyright {
    font-size: 0.75rem;
    color: #333;
    letter-spacing: 0.1rem;
}

/* About Page */
.about-page .navbar {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.about-section {
    padding-top: 10rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}
.about-image:hover img {
    transform: scale(1.02);
}
.about-text h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    margin-bottom: 2rem;
}

/* Page Transition Overlay */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    opacity: 1; /* Start black */
    pointer-events: all;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.transition-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}
.about-text .highlight {
    color: var(--text-primary);
    font-weight: 400;
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
    margin-top: 2rem;
}

/* Responsive */
/* Projects Page */
.page-projects .navbar {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    mix-blend-mode: normal;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.projects-header {
    padding-top: 10rem;
    padding-bottom: 4rem;
}
.pb-0 { padding-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.mt-4 { margin-top: 4rem; }

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.project-card {
    text-decoration: none;
    color: var(--text-primary);
    display: block;
    transition: transform 0.3s;
}
.project-card:hover {
    transform: translateY(-5px);
}
.card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover .card-img-wrap img {
    transform: scale(1.05);
}
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}
.project-card:hover .play-overlay {
    opacity: 1;
}
.project-card h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05rem;
    margin-bottom: 0.2rem;
}
.project-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Credits List */
.credits-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.credit-item {
    display: grid;
    grid-template-columns: 100px 1fr 200px;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    align-items: center;
    text-decoration: none;
    color: var(--text-primary);
}
.credit-item:last-child {
    border-bottom: none;
}
.credit-item:hover {
    background: rgba(255,255,255,0.02);
}
.credit-year {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.credit-title {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
}
.credit-role {
    color: var(--accent);
    font-size: 0.9rem;
    text-align: right;
}

/* Clients / Brands */
.clients-section {
    padding-top: 4rem !important;
    padding-bottom: 6rem !important;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 4rem;
}
.brand-title {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.brand-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
}
.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: rgba(255,255,255,0.4);
    transition: color 0.4s ease, transform 0.4s ease;
}
.brand-logo svg {
    height: 45px;
    width: auto;
    max-width: 140px;
    transition: all 0.4s ease;
}
.brand-logo:hover {
    color: rgba(255,255,255,1);
    transform: scale(1.05);
}

/* Video Modal */
.video-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.video-modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}
.video-modal-content {
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8);
    background: #000;
}
.video-modal-backdrop.open .video-modal-content {
    transform: scale(1);
}
.video-modal-close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 2001;
}
.video-modal-close:hover {
    color: #fff;
    transform: scale(1.1);
}
.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Form Modal */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.modal-backdrop.open {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    background: var(--bg-color);
    width: 100%;
    max-width: 500px;
    padding: 3rem;
    border-radius: 4px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-backdrop.open .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}
.modal-close:hover {
    color: var(--accent-color);
}
.modal-content h2 {
    font-family: 'Bebas Neue', display;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.15rem;
}
.form-group {
    position: relative;
    margin-bottom: 2.5rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 0;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group textarea {
    resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}
.form-group label {
    position: absolute;
    top: 0.5rem;
    left: 0;
    color: var(--text-muted);
    transition: 0.3s ease all;
    pointer-events: none;
}
.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -1.2rem;
    font-size: 0.75rem;
    color: var(--accent-color);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}
.submit-btn {
    width: 100%;
    background: var(--text-color);
    color: var(--bg-color);
    border: none;
    padding: 1rem;
    font-family: 'Bebas Neue', display;
    font-size: 1.25rem;
    letter-spacing: 0.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 55px;
}
.submit-btn:hover {
    background: var(--accent-color);
    color: white;
}
.loader {
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: var(--bg-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 900px) {
    .about-container { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .credit-item { grid-template-columns: 80px 1fr; gap: 1rem; }
    .credit-role { text-align: left; grid-column: 2; margin-top: -1rem; }
}
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; letter-spacing: 0.1rem; }
    .grid-container { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: 1fr; }
    .grid-item.single-col-span { grid-column: 1; height: 50vh; }
    .section { padding: 6rem 1.5rem; }
    .navbar { padding: 1.5rem; }
    .navbar.scrolled { padding: 1rem 1.5rem; }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 101;
    }
    .hamburger span {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .hamburger.toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--bg-primary);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 90;
    }
    .nav-links.nav-active {
        transform: translateX(0);
    }
    .nav-links a {
        margin: 0;
        font-size: 2rem;
    }
    .brand-grid { gap: 2rem; }
    .brand-logo { font-size: 1.2rem; }
    
    /* Touch-Friendly Grid Items */
    .item-overlay {
        opacity: 1;
        background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
        padding: 2rem 1.5rem;
    }
    .item-overlay h2, .item-overlay p, .color-palette {
        transform: translateY(0);
        opacity: 1;
    }
    .hover-video {
        display: none !important;
    }
    .play-overlay {
        opacity: 1;
        background: rgba(0,0,0,0.4);
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Typography & Spacing adjustments */
    .hero p { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .about-text h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
    .slider-container {
        max-width: 100%;
        aspect-ratio: 4/3; 
    }
}
