/* 
    Photography Portfolio Styles - YL Redesign
    Aesthetic: Dark, Minimalist, Elegant, Premium, Artistic Brush Style
*/

:root {
    /* Color Palette */
    --bg-primary: #0D0D0D;
    --bg-secondary: #131313;
    --bg-card: #181818;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --accent: #D6BFA7;
    /* Soft gold/beige */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease-in-out;
    --transition-medium: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Texture Overlay */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9000;
    /* Subtle noise texture */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.8rem;
}

p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

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

ul {
    list-style: none;
}

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

/* Preloader Animation */
#preloader {
    position: fixed;
    inset: 0;
    background-color: #ffffff;
    /* Correção de tarja branca no celular: fundo branco */
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
}

.yl-logo {
    width: 200px;
    height: 200px;
}

#intro-video {
    width: 100%;
    max-width: 450px;
    /* Tamanho reduzido e centralizado */
    height: auto;
    object-fit: contain;
    background-color: transparent;
    /* Truque para remover qualquer tom acinzentado do fundo do vÃ­deo e fundir com o branco */
    mix-blend-mode: multiply;
    filter: brightness(1.05) contrast(1.1);
}

@media (max-width: 768px) {
    #preloader {
        display: none !important;
    }
}

.brush-stroke {
    fill: none;
    stroke: var(--accent);
    stroke-width: 15;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: paint 2s cubic-bezier(0.8, 0, 0.2, 1) forwards;
}

/* Stagger the strokes */
.brush-stroke:nth-child(2) {
    animation-delay: 0.5s;
}

.brush-stroke:nth-child(3) {
    animation-delay: 1s;
}

@keyframes paint {
    to {
        stroke-dashoffset: 0;
    }
}

/* Brush Typography & Accents */
.title-brush {
    position: relative;
    display: inline-block;
}

.brush-divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    margin: 1rem auto 1.5rem auto;
    border-radius: 4px;
    /* simulated rough edges */
    clip-path: polygon(0 20%, 10% 0, 90% 10%, 100% 30%, 95% 100%, 5% 90%);
}

.about-text h2.title-brush {
    display: block;
}

.contact-info h2.title-brush {
    display: block;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
}

.container-split>* {
    flex: 1;
}

.section {
    padding: 8rem 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.accent-text {
    color: var(--accent);
    font-style: italic;
    font-family: var(--font-heading);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
    border-radius: 0;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.3);
}

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

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-floating-btn:hover {
    background-color: #20BA59;
    color: white;
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    z-index: 900;
    transition: all var(--transition-medium);
    background: transparent;
}

#navbar.scrolled {
    padding: 1rem 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links li a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    font-weight: 500;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width var(--transition-medium);
}

.nav-links li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: radial-gradient(circle at 70% 30%, #151515 0%, #0D0D0D 80%);
    overflow: hidden;
    padding: 160px 0 100px 0;
}

#hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    text-align: left;
    z-index: 5;
}

.hero-text h1 {
    font-size: 5.2rem;
    margin-bottom: 2rem;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 3.5rem;
    color: var(--text-secondary);
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 75vh;
}

.hero-main-img {
    height: 100%;
    width: auto;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.5;
    z-index: 10;
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
    color: var(--text-primary);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--text-primary);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 18px);
        opacity: 0;
    }
}

/* Responsividade Hero */
@media (max-width: 1200px) {
    .hero-text h1 {
        font-size: 4.2rem;
    }
}

@media (max-width: 992px) {
    #hero {
        padding: 120px 0 80px 0;
    }

    #hero .hero-container {
        grid-template-columns: 1fr;
        gap: 5rem;
    }

    .hero-text {
        text-align: center;
        order: 2;
        padding: 0 1rem;
    }

    .hero-text p {
        margin: 0 auto 3rem auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image {
        order: 1;
        height: 65vh;
        justify-content: center;
    }

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

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 3.2rem;
    }

    .hero-image {
        height: 55vh;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* Portfolio Gallery */
.filter-btns {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    padding-bottom: 5px;
    position: relative;
    font-family: var(--font-body);
}

.filter-btn.active {
    color: var(--text-primary);
}

.filter-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width var(--transition-fast);
}

.filter-btn.active::after {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
    will-change: transform, opacity;
    transform: translateZ(0);
}

.portfolio-item.hide {
    display: none;
}

.portfolio-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform var(--transition-slow);
    will-change: transform;
    transform: translateZ(0);
}

.item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 60%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: flex-end;
    padding: 2.5rem;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover .item-overlay {
    opacity: 1;
}

.item-text {
    transform: translateY(20px);
    transition: transform var(--transition-medium);
}

.portfolio-item:hover .item-text {
    transform: translateY(0);
}

.item-text h3 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.item-text p {
    color: var(--accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.lightbox.show {
    opacity: 1;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s forwards;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
}

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

/* About */
#about {
    overflow: hidden;
}

.about-image {
    position: relative;
}

.ink-splash {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-color: var(--accent);
    opacity: 0.15;
    clip-path: polygon(50% 0%, 100% 25%, 80% 90%, 10% 100%, 0% 30%);
    z-index: -1;
}

.about-image img {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.about-benefits {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.about-benefits h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-benefits ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-benefits li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.about-benefits li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 0.85rem;
}

/* Expertise / O que eu fotografo */
.expertise-title-wrapper {
    margin-bottom: 6rem;
}

.expertise-subtitle {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5rem;
    align-items: stretch;
}

.expertise-item {
    background: var(--bg-card);
    padding: 3.5rem 2.5rem;
    transition: transform var(--transition-medium), background var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    text-align: left;
}

.expertise-item:hover {
    transform: translateY(-8px);
    background: #1f1f1f;
    border-bottom: 2px solid var(--accent);
}

.step-num {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.expertise-item-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.expertise-item-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 0;
}

@media screen and (max-width: 992px) {
    .expertise-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media screen and (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .expertise-item {
        padding-top: 1.5rem;
    }

    .expertise-item-title {
        font-size: 2rem;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--bg-primary);
    padding: 3.5rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: left;
    /* Align left for detailed bullet points */
    position: relative;
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(214, 191, 167, 0.3);
    /* Soft beige hover highlight */
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-desc {
    font-size: 0.95rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 2.5rem;
    height: 45px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 0.8rem;
}

.pricing-card.popular {
    background: var(--bg-card);
    border: 1px solid var(--accent);
    padding: 4.5rem 3.5rem;
    transform: scale(1.05);
    transform-origin: top center;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 6px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.pricing-card.popular .price-tag {
    font-size: 1.8rem;
    color: var(--text-primary);
    /* Destaque leve em contraste com a cor do card */
}

.pricing-card .pricing-desc {
    height: 80px;
    /* Aumentado por conta da descriÃ§Ã£o maior */
}

/* Extras Footnote */
.extras-footnote {
    margin-top: 1.5rem;
    text-align: right;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.extras-footnote strong {
    color: var(--text-primary);
    font-weight: 500;
}

/* Contact Section */
.contact-info h2 {
    font-size: 2.8rem;
}

.contact-details {
    margin: 3rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: transparent;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.w-100 {
    width: 100%;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links a {
    margin-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

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

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .container-split {
        flex-direction: column;
        gap: 4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
        font-size: 1.5rem;
        margin-left: 20px;
    }

    .nav-contact-btn {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links a {
        margin: 0 1rem;
    }

    .whatsapp-floating-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }

    /* AJUSTES FINOS MOBILE */
    #preloader {
        background-color: #ffffff;
    }

    #intro-video {
        width: 100vw;
        height: 100vh;
        max-width: none;
        object-fit: contain;
    }

    .hero-container {
        padding-top: 100px;
    }

    .scroll-indicator {
        display: none !important;
    }
}
