:root{
    --bg-clr: #000000;
    --fg-clr: #ffffff;
    --border-sm: 12px;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bodoni Moda", serif;
}

html,
body{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-clr);
}

.main_wrapper{
    height: 90vh;
    width: 90vw;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
    background: var(--bg-clr);
    border-radius: var(--border-sm);
}

.main_wrapper .navbar{
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    color: var(--fg-clr);
}

.navbar h1{
    font-size: 1.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    background-color: #ffffff;
    color: var(--bg-clr);
    padding: .25rem 1.25rem;
    border-radius: 50px;
}

.navbar .nav_links{
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1rem;
}

.navbar .nav_links a{
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .5rem;
    height: 2.8rem;
    width: 2.8rem;
    color: var(--fg-clr);
    text-decoration: none;
    transition: all .3s ease;
    border-radius: 50px;
    border: 1px solid var(--fg-clr);
    overflow: hidden;
}

.navbar .nav_links a div{
    height: 2.8rem;
    width: 2.8rem;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 50px;
    color: var(--fg-clr);
    background-color: #000000;
}
.navbar .nav_links a:hover{
    padding-right: 8rem;
    background: var(--fg-clr);
    color: var(--bg-clr);
}

.footer{
    height: 10vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    color: var(--fg-clr);
}
.footer h1{
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--fg-clr);
}
.footer p{
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.5rem;
    flex: 1;
}
.footer button{
    height: 3rem;
    padding: 0 1rem;
    border: none;
    border-radius: 50px;
    background-color: var(--fg-clr);
    color: var(--bg-clr);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
    flex-shrink: 0;
}
.footer button:hover{
    background-color: transparent;
    color: var(--fg-clr);
    border: 1px solid var(--fg-clr);
}


.hero_section{
    height: 75vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--bg-clr);
}
.hero_section > * {
    transition: all .5s ease;
}
.hero_section .section1,
.hero_section .section2,
.hero_section .section3{
    height: 98%;
    width: 30%;
    background-color: #000000;
    border-radius: var(--border-sm);
    overflow: hidden !important;
}

.hero_section .section1 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-sm);
}
.hero_section .section3 img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: var(--border-sm);
}
.hero_section .section1 .text_card{
    height: 30%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-sm);
    background-color: rgb(28, 36, 28);
    color: var(--fg-clr);
}

.hero_section .section1 .text_card h1{
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    line-height: 1.5rem;
}
.hero_section .section1 .text_card button{
    position: relative;
    top: 40%;
    left: 28%;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    background-color: transparent;
    border: 1px solid var(--fg-clr);
}
.hero_section .section1 .text_card button i{
    font-size: 1.2rem;
    color: var(--fg-clr);
}

.hero_section .section2 video{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.hero_section .section3 video{
    height: 0;
    width: 100%;
    object-fit: cover;
    object-position: 20% center;
}

/* Mobile warning overlay - default hidden */
.mobile-warning{
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}
.mobile-warning__box{
    background: #fff;
    color: #000;
    max-width: 420px;
    width: calc(100% - 48px);
    padding: 1.25rem 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.mobile-warning__box h2{
    margin-bottom: .5rem;
}
.mobile-warning__box p{
    font-size: .95rem;
    margin-bottom: 1rem;
}
.mobile-warning__box button{
    background: #000;
    color: #fff;
    border: none;
    padding: .6rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}

/* Show overlay on small screens only (<=768px) */
@media (max-width: 768px){
    .mobile-warning{ display: flex; }
}