:root {
    /* Colors */
    --color-dark: #050505;
    --color-primary: #d8b450;
    --color-accent: #d8b450;
    --color-gold: #d8b450;
    --color-maroon: #2d0b16;
    --color-pink: #cb4f6e;
    --color-light: #f3f3f3;
    --color-white: #ffffff;
    --color-text: #eaeaea;
    --color-text-muted: #888888;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Fonts */
    --font-heading: 'Syne', sans-serif;
    --font-secondary: 'Syne', sans-serif;
    --font-body: 'altivo', sans-serif;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    background-color: var(--color-dark);
    color: var(--color-text);
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-white);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.textured-maroon {
    background-color: var(--color-maroon);
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 100%),
        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.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: soft-light;
    position: relative;
    overflow: hidden;
}

.textured-maroon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent, rgba(0, 0, 0, 0.8));
    pointer-events: none;
}

/* White Section Themes (Hotel & Cuisine) */
#hotel,
#cuisine {
    background-color: #ffffff;
    color: #1a1a1a;
}

#hotel h2,
#cuisine h2 {
    color: var(--color-maroon);
}

#hotel .glass-card,
#cuisine .glass-card {
    background: #f8f8f8;
    border: none;
    backdrop-filter: none;
    padding: 1.25rem !important;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    transition: transform 0.3s ease;
}

#hotel .glass-card:hover,
#cuisine .glass-card:hover {
    transform: translateY(-5px);
    background: #f2f2f2;
}

#hotel .glass-card h4,
#cuisine .glass-card h4 {
    color: var(--color-maroon);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1rem;
    line-height: 1.2;
}

#hotel .glass-card .material-icons-sharp,
#cuisine .glass-card .material-icons-sharp {
    color: var(--color-pink) !important;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    align-items: stretch;
}

@media (max-width: 1100px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

#cuisine .glass-card .material-icons-sharp {
    color: var(--color-pink) !important;
}

.material-symbols-outlined {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}

#hotel .btn,
#cuisine .btn {
    color: var(--color-maroon);
    border-color: var(--color-pink);
    background: transparent;
}

#hotel .btn::before,
#cuisine .btn::before {
    display: none;
}

#hotel .btn:hover,
#cuisine .btn:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
}

#hotel p,
#cuisine p {
    color: #333333;
}

#hotel .text-muted,
#cuisine .text-muted,
#hotel p.reveal-text[style*="color: var(--color-text-muted)"],
#cuisine p.reveal-text[style*="color: var(--color-text-muted)"] {
    color: #666666 !important;
}

#cuisine ul li span {
    color: #333333;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.text-gold {
    color: var(--color-gold);
}

.section-label {
    font-family: var(--font-secondary);
    font-weight: 800;
    color: var(--color-pink);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 1rem;
}

/* Animations Classes */
.reveal-text {

}

.reveal-text.active {

}

/* WOW Features */
.hero-title {
    font-size: clamp(3rem, 7vw, 7rem);
    /* Reduced size */
    font-weight: 800;
    line-height: 0.9;
    margin-left: -0.05em;
    padding-bottom: 0.2em;
    width: 100%;
    overflow-wrap: break-word;
    text-shadow: 0 0 60px rgba(0, 0, 0, 0.3), 0 0 120px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustment for outline text */
@media (max-width: 768px) {
    .text-outline {
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    }
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 50px rgba(0, 0, 0, 0.4));
}

.hero-title:hover .text-outline {
    -webkit-text-stroke: 1px var(--color-primary);
    transform: skewX(-2deg);
}

/* Grain Overlay */
.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Header Base */
.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    transition: all 0.5s var(--ease-out-expo);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(45, 11, 22, 0.85);
    /* Maroon tint */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    border-bottom: 1px solid rgba(203, 79, 110, 0.2);
    /* Pink subtle border */
}

/* Responsive Header */
@media (max-width:1500px) {
    .artist-overlay h3 {
        font-size: 1.3rem !important;
    }

    .artist-overlay span{
        font-size: 0.65rem!important;
    }

    .director h3 {

        font-size: 1.3rem;
    }

    .director {

        margin: 0 0px -50px 0;
    }

}
@media (max-width:1200px) {
    .nav-link{
        margin:0 12px;
    }

    .btn-nav{
        margin:0 0 0 10px;
    }

    .hero-title {
        font-size:48px;
    }

    .speaker-card{
        height:300px;



    }

    .speaker-image-wrapper img{

    }

    .speaker-overlay{

    }


}
@media (max-width:1000px) {
    .nav-links {
        display: none !important;
        /* Force hide nav links on mobile */
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
        overflow: hidden;
    }

    .text-outline {
        font-size: clamp(1.8rem, 7vw, 3.5rem);
    }

    .fancy-caption {
        font-size: 0.75rem !important;
        letter-spacing: 0.08em !important;
    }

    #hero .container {
        padding-top: 6rem;
    }

    .main-header {

        background: rgba(45, 11, 22, 0.85);
    }
}

/* Responsive Cards */
@media (max-width: 768px) {

    .artist-grid,
    .speaker-grid,
    .entertainer-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
        gap: 1.5rem;
    }

    .artist-card,
    .entertainer-card {
        height: 350px;
        /* Smaller height on mobile */
    }

    #cuisine .container .content {
        display:block!important;
    }

    #cuisine .container .content h2{
        margin:40px 0 20px 0!important;
    }

    .speaker-card {
        height: 400px;
    }

    .section {
        padding: 4rem 0;
    }

    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .artist-card h3{
        font-size:0.8rem!important;
    }

    .artist-overlay{
        padding:1.2rem!important;
    }
}

@media (max-width: 650px) {
    #entertainment div{
        gap:0.5rem!important;
    }

    .reveal-text.active {
        padding: 0rem !important;

    }

    .hero-title{
        font-size:24px!important;

    }


}



/* New Floating Header */
.nav-floating {
    background: rgba(5, 5, 5, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.75rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.nav-link {
    position: relative;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Fancy Subtext */
.fancy-caption {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--color-text-muted);
}

.fancy-caption .separator {
    width: 40px;
    height: 1px;
    background: var(--color-primary);
}

/* Glassmorphism & Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    transition: transform 0.5s var(--ease-out-expo), border-color 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

/* Artist Cards */
.artist-card {
    position: relative;

    transition: transform 0.5s var(--ease-out-expo);
}



.artist-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    z-index:8;

}

.artist-card:hover {
    transform: scale(0.98);
}

.artist-card:hover .overlay {
    opacity: 1;
}

.shadchan h3.small{
    color: var(--color-gold);
    margin:0 0 20px 0;
    font-size: 1.1rem;

}

.shadchan h3{
    margin:20px 0;
    font-size: 1.8rem;
}

.shadchan .info{
    width:70%;
}

.shadchan{
    display:flex;
    align-items:center;
    width:40%;
    justify-content:space-between;
    margin:60px auto 0 auto;
}
.shadchan .pic{
    flex:0 0 200px;
}

.director{
    display:flex;
    justify-content:right;
    position:relative;
    color: #666666;
    z-index:8;
    margin:-75px 60px -50px 0;
    align-items:center;
}

.director h3{
    color: var(--color-pink);
    margin-bottom: 0.5rem;
    font-size: 1.6rem;

}

.director .caps{
    text-transform:uppercase;
    font-size:19px;
    color:#333333;
    letter-spacing:4px;
    margin:0 0 10px 0;
}

.director .left{
    text-align:right;
    margin:0 30px 0 0;

}



/* Buttons */
.btn {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-pink);
    transition: all 0.3s ease;
    z-index: 1;
}

.btn:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
}

.btn::before {
    display: none;
}

/* Navigation Button */
.btn-nav {
    display: inline-block;
    padding: 0.6rem 2rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--color-white);
    border: 1px solid var(--color-pink);
    background: transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    border-radius: 50px;
}

.btn-nav::before {
    display: none;
}

.btn-nav:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
}

.btn-primary {
    background: transparent;
    border-color: var(--color-pink);
    color: var(--color-white);
}

.btn-primary::before {
    display: none;
}

.btn-primary:hover {
    background: var(--color-pink);
    border-color: var(--color-pink);
    color: var(--color-white);
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

/* Reservation Section Background */
#reservation {
    background-color: #1a060c;
    /* Darker Maroon */
    position: relative;
    overflow: hidden;
}

#reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/contact.jpg') center/cover no-repeat;
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}


/*From Home*/
/* Hamburger Button */
        .hamburger-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .hamburger-line {
            width: 28px;
            height: 2px;
            background: var(--color-pink);
            transition: all 0.3s ease;
        }

        .hamburger-btn.active .hamburger-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger-btn.active .hamburger-line:nth-child(2) {
            opacity: 0;
        }

        .hamburger-btn.active .hamburger-line:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(5, 5, 5, 0.98);
            backdrop-filter: blur(20px);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .mobile-nav-link {
            font-family: var(--font-secondary);
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-white);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: color 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: var(--color-primary);
        }

        body.menu-open {
            overflow: hidden;
        }

        @media (max-width: 1250px) {
            .btn-nav {
                display: inline-block;
                font-size: 0.71rem;
                padding: 0.3rem 1rem;
            }

            footer .title{
                margin:0 0 0 10px;
            }

            .social{
                margin:0 0 0 10px;
            }

            .main-header.scrolled, .main-header{
                padding:1rem;
            }

            .nav-links{
                gap:1.5rem!important;
            }

            .desktop-cta a{
                font-size:0.75rem!important;
            }

            .nav-link {

                font-size: 0.75rem;
            }

            .artist-overlay h3{
                font-size:1.3rem!important;
            }
        }



        /* Show hamburger on mobile */
@media (max-width: 1800px) {
    .shadchan{
        width:60%;
    }
}

@media (max-width: 1500px) {
    .shadchan {
        width: 100%;
    }
}



        @media (max-width: 1000px) {
            .hamburger-btn {
                display: flex;
            }

            .desktop-cta {
                display: none;
            }

            .hamburger-line{
                margin:0 0 5px 0;

            }

            .artist-overlay h3 {
                font-size: 1rem !important;
            }

            footer ul{
               padding:40px 0 0 0!important;
            }
        }

@media (max-width: 550px) {
    .shadchan{
        flex-direction:column-reverse;
    }

    .shadchan .pic{
        width:100%;
        margin:0 0 40px 0;
    }

    .shadchan .info{
        width:100%;
    }

}

@media (max-width: 550px) {
    .main-header .logo a{
        width:70px!important;
    }

    #hotel .glass-card h4, #cuisine .glass-card h4{
        font-size:0.8rem;
    }

    .amenities-grid{
        margin:30px 0 30px 0;
    }

    #hotel .glass-card, #cuisine .glass-card {

        padding: 1rem !important;
        height:auto!important;
    }

    .main-header.scrolled, .main-header {
        padding: 0.5rem;
    }

    .desktop-cta{
        gap:0.5rem!important;
        margin:0
    }

    .desktop-cta a {
        font-size: 0.55rem!important;
    }

    .btn-nav {

        padding: 0.3rem 0.5rem;
    }

    h2.reveal-text.active{
        font-size: clamp(1.2rem, 4vw, 3.5rem)!important;
    }

    .section {
        padding: 2rem 0;
    }

    .hamburger-btn{
        padding:6px;
    }

    #entertainment div{
        grid-template-columns: repeat(1, 1fr)!important;
    }

    #cuisine .container .content h2{
        font-size:2rem!important;
    }

    .btn-nav {
        margin: 0 0 0 2px;
    }

    .btn {

        padding: 0.7rem 1.2rem;
    }

    .reveal-text.active{
        margin-bottom:0!important;
    }

    .director .left{
        text-align:left;
        margin:0;
    }




    #program div{
        display:block!important;
    }

    #program .director{
        display:flex!important;
        margin:0 0 20px 0;
    }

    #program .director .right img{
        width:100%;
    }

    #program .director .right{
        width:120px;
    }

    #program  .reveal-text.active{
        margin:10px 0!important;
    }

    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
        color:#000!important;
    }

    #program .reveal-text.active {
        padding: 12px!important;
    }

    #contactFrm input,  #contactFrm textarea{
        padding:12px 0 12px 3%!important;
        width:96%!important;
    }

    .container {
        padding-left: 1rem!important;
        padding-right: 1rem!important;
    }

    #contactFrm .btn{
        width:96%!important;
    }

    #contactFrm{
        padding:10px!important;
        margin:30px 0 0 0!important;

    }



    #speakers .reveal-text.active{

        margin:10px auto!important;
        width:90%!important;

    }

    #speakers .text-center{
        margin-bottom:0!important;
    }

    footer .title {
        margin: 20px 0 0 0px;

    }

    #hotel .btn, #cuisine .btn{
        text-align:center;
        display:block;
        margin: 0px 0 0 0;
    }

    footer .top{
        flex-direction:column!important;
        text-align:center;
        align-items:center!important;
        width:100%;
        justify-content:center!important;
    }

    .social {
        margin: 12px 0 0 0;
    }

    .speaker-name{
        font-size:14px!important;

    }

    .kids-program-carousel  {
        margin:40px 0 0 0;
    }

    .speaker-info {

        padding: 1rem!important;

    }



    footer{
        padding:30px 0!important;
    }

    footer .title p{
        font-size: 0.6rem!important;
    }

    .copy{
        flex-direction:column!important;
        align-items:center!important;
        justify-content:center!important;
    }

    footer ul{
        display:none!important;
    }

    #testimonials, #testimonials-2{
        padding:2rem 0!important;
    }

    .reveal-text{
        white-space:wrap!important;
    }

    .reveal-text.active h2 {
        font-size: clamp(1.5rem, 4vw, 3.5rem)!important;
        margin:0 0 20px 0;
    }

    .btn {

        font-size: 0.8rem;
        t
        letter-spacing: 0.06em;
    }

    .par{
        font-size: 1.5rem!important;
        line-height: 1.2!important;
    }

    .section-label{
        font-size:0.6rem!important;
        margin:20px 0 0 0;
    }
}

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 3rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            z-index: 10;
        }

        .scroll-text {
            font-family: var(--font-secondary);
            font-size: 0.75rem;
            letter-spacing: 0.5em;
            text-transform: uppercase;
            color: var(--color-white);
            font-weight: 600;
            opacity: 1;
            margin-right: -0.5em;
            /* Compensate for last letter spacing */
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .scroll-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--color-primary);
            animation: scroll-line-anim 2.5s infinite var(--ease-out-expo);
        }

        .mailing{
            display:flex;
            align-items:center;
            color:#ffff;
            justify-content:center;
            padding:20px 0;
            background:var(--color-pink);
        }

        .mailing  button{
            background:var(--color-gold);
            border:none;
            color:#fff;
            font-size:14px;
            position:absolute;
            padding:10px 0 0 0;
            right:-5px;
            width: 40px;
            height: 40px;
            border-radius:100%;
            cursor:pointer;
        }

.mailing  button span{
    font-size:20px;
}

        .mailing h3{
            font-size:33px;
        }

.mailing form input{
    border:none;
    height:40px;
    background:none;
    color:grey;
    padding:0 0 0 10%;
    width:90%;
}

        .mailing form{
            border-radius:20px;
            width:250px;

            position:relative;
            background:#fff;
        }

.mailing .text{
    font-size:22px;margin:0 40px;
    font-family: var(--font-secondary);
}

@media (max-width:1500px) {

    .director h3 {

        font-size: 1.3rem;
    }

    .director {

        margin: 0 0px -50px 0;
    }

    .director h3 {
        font-size: 16px;
    }

    .director .caps{
        font-size:15px;
    }

}

@media (max-width: 1300px) {
    .mailing h3{
        font-size:22px;
    }

    .mailing .text {
        font-size: 16px;
        margin: 0 10px;
        font-family: var(--font-secondary);
    }
}

@media (max-width: 1000px) {
    .mailing{
        flex-direction:column;
    }

    .mailing .text{
        margin:20px 0;
    }
}

@media (max-width: 450px) {
    .btn-nav {
        margin: 0 0 0 8px;
    }

    .mailing h3 {
        font-size: 17px;
    }
}

        @keyframes scroll-line-anim {
            0% {
                transform: translateY(-101%);
            }

            100% {
                transform: translateY(101%);
            }
        }
