*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
}

.hero{
    padding:50px 50px;
    width:100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #000;
}
/* vignette */
.hero::before{ content:none; }
/* noise + white speckles */
.hero::after{ content:none; }

.hero .bg-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.35;
    z-index:0;
}

@keyframes backgroundShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

header .logo img{
    width:100px;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 6;
    position: relative;
}
header nav{
background-color: #ffffff;
padding:40px;
width: 40%;
height: 100vh;
position: fixed;
top:0px;
right:0px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 7;
transform: translateX(100%);
transition: .5s;
}
header nav.active{
    transform: translateX(0%); 
}
header nav a{
    color: #222;
    font-size: 20px;
    padding:15px;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

header .ham{
    width:60px;
    padding:10px;
    background-color: #000000;
    position: relative;
    z-index: 8;
    cursor: pointer;
}
video{
    /* base video styling kept minimal; sizing handled by .video-frame video */
    opacity: 0.9;
}

/* frame to hold video + bar + reveal */
.video-frame{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-frame.revealed{
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Simple bottom buttons */
.bottom-buttons{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    z-index: 10;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.video-frame.revealed .bottom-buttons{
    transform: translateY(0);
}

.bottom-btn{
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bottom-btn:hover{
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.video-frame video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    object-fit: cover;
    z-index: 1;
    animation: none;
    box-shadow: none;
    border-radius: 0;
}

/* transparent top bar with centered motto */
.menu-bar.transparent{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    z-index: 3;
    background: rgba(0,0,0,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.menu-center{
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    font-weight: 800;
    letter-spacing: 1.2px;
    font-size: 16px;
}



@media(max-width:767px){
    .video-frame{ width: 92%; height: 65vh; }
    .menu-bar.transparent{ height: 30px; }
    .menu-center{ font-size: 14px; letter-spacing: 0.8px; }
    .bottom-buttons{ 
        gap: 15px; 
        height: 70px;
    }
    .bottom-btn{ 
        padding: 10px 18px; 
        font-size: 12px;
    }
}

@keyframes videoAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes videoFloat {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.02);
    }
}
.content-wrap{
    width:100%;
    height: 100vh;
    position: absolute;
    left:0px;
    top:0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}
.content h1{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
}
.content h2{
    font-size: 30px;
}
.content a{
    border:2px solid #ffffff;
    display: block;
    width:200px;
    margin:30px auto;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50px;
    padding:15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .5s;
}
.content a:hover{
    background-color: #ffffff;
    color:#000000;
}
.social-icons{
position: absolute;
left:50px;
bottom:50px;
}
#social-btns {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    pointer-events: none;
    transition: 
        opacity 0.6s cubic-bezier(.77,0,.18,1),
        transform 0.6s cubic-bezier(.77,0,.18,1);
}

#social-btns.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

#social-btns a img {
    width: 32px;
    height: 32px;
    transition: transform 0.2s;
}
#social-btns a:hover img {
    transform: scale(1.15) rotate(-8deg);
}
#restore-explore-btn {
    margin: 30px auto 0 auto;
    display: block;
    padding: 12px 32px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}
#restore-explore-btn:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    color: #222;
}
.social-icons ul{
    display: flex;
    align-items: center;
    gap:30px;
    list-style-type: none;
}
.social-icons ul img{
    width:25px;
}

@media (max-width: 767px) {
    #social-btns {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 18px;
        margin-top: 24px;
        padding: 0 10px;
    }
    #social-btns a {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.08);
        border-radius: 16px;
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
        transition: background 0.2s;
        font-size: 13px;
        color: #fff;
        text-decoration: none;
        border: none;
    }
    #social-btns a img {
        width: 28px;
        height: 28px;
        margin: 0;
    }
    #social-btns a:hover,
    #social-btns a:active {
        background: rgba(255,255,255,0.18);
    }
    #restore-explore-btn {
        margin: 18px auto 0 auto;
        padding: 10px 22px;
        font-size: 15px;
        border-radius: 22px;
    }
    .content h1 {
        font-size: 32px;
    }
    .content h2 {
        font-size: 18px;
    }
    .content a#explore-btn {
        font-size: 15px;
        padding: 10px;
        width: 140px;
        margin: 20px auto;
    }
}