@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "TWK Lausanne", "Inter", sans-serif;
    
}
/* html,body{
    width: 100vw;
    height: 100vh;
} */
body {
    overflow-x: hidden;
    background-image: url('../IMG/background.jpg') !important;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #ffffff;
    line-height: 1.6;
}
h1{
    text-transform: uppercase;
    font-size:5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.8em;
    margin:5% 0%;
}
h3{
    font-size: 1.5rem;
    line-height: 1.8em;
    letter-spacing: 0.1em;
}
p{
    text-transform: uppercase;
    line-height: 1.8em;
    letter-spacing: 0.1em;
}
section{
    position: relative;
    width: 100vw;
    height: 100vh;

    text-align: center;
    overflow: hidden;
}

.hero-img-container, .hero-img-container img, .fade-overlay{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
}
.hero-img-logo img{
    position: absolute;
    top:20%;
    left:50%;
    transform: translate(-50%,0);
    width:250px;
    height:auto;
    object-fit: contain;
}
img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

a, p {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    user-select: none;
}

nav {
    position: fixed;
    width: 100vw;
    padding: 2.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.logo a {
    font-weight: 600;
}

.menu-toggle {
    position: relative;
    width: 3rem;
    height: 1.5rem;
    cursor: pointer;
}

.menu-toggle p {
    position: absolute;
    transform-origin: top left;
    will-change: transform, opacity;
}

.menu-overlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: #0f0f0f;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    z-index: 999;
}

.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-origin: left bottom;
    will-change: transform, opacity;
    transform: translateX(-100px) translateY(-100px) scale(1.5) rotate(-15deg);
    opacity: 0.25;
}

.menu-items, .menu-footer {
    width: 100%;
    padding: 2.5em;
    display: flex;
    gap: 2.5em;
}

.col-lg {
    flex: 3;
}

.col-sm {
    flex: 2;
}

.menu-items .col-lg {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-preview-img {
    position: relative;
    width: 70%;
    height: 80vh; 
    overflow: hidden;
}

.menu-preview-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform, opacity;
}

.menu-items .col-sm {
    padding: 2.5em 0;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.menu-links, .menu-socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.link, .social {
    padding-bottom: 6px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}


.link a, .social a {
    display: inline-block;
    will-change: transform;
    transition: color 0.5s;
    transform: translateY(120%);
    opacity: 0.25;
}

.link a {
    font-size: 3.5rem;
    letter-spacing: 0.1em;
}

.social a {
    color: #8f8f8f;
}

.social a:hover {
    color: #fff;
}

.menu-footer {
    position: absolute;
    bottom: 0;
}

.menu-footer .col-sm {
    display: flex;
    justify-content: space-between;
}

.link a::after,
.social a::after,
.menu-footer a::after {
    position: absolute;
    content: "";
    top: 102.5%;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.link a:hover::after,
.social a:hover::after,
.menu-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.container {
    position: relative;
    width: 100%;
    height: 100%;
    will-change: transform;
    transform-origin: right top;
}

.hero {
    position: relative;
    width: 100vw;
    height: 100svh;
    padding: 2.5em;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    z-index: -1;
}

.hero h1 {
    width: 80%;
    font-size: 5rem;
    font-weight: 300;
}

.menu-toggle p#menu-close {
    opacity: 0;
    transform: translateX(-5px) translateY(10px) rotate(5deg);
}

@media(max-width: 900px) {
    .hero h1 {
        width: 100%;
        font-size: 4rem;
        letter-spacing: 0;
    }

    .link a {
    font-size: 2rem;
}

    .menu-items .col-lg {
        display: none;
    }

    .link a::after,
    .social a::after,
    .menu-footer a::after {
        display: none;
    }
}
 /* Footer */
        footer {
            margin-top:3%;
            padding: 40px 0;
            
        }
        footer p {
            line-height: 1.8em;
            letter-spacing: 0.1em;
            font-size:1rem;
        }

        footer .container {
            text-align: center;
            color: #999;
            font-size: 1rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 18px;
            font-weight: 300;
            color: #999;
            text-align: center;
            margin-bottom: 60px;
        }

        .divider {
            width: 60px;
            height: 1px;
            background: #ffffff;
            margin: 0 auto 40px;
        }