/* ============ RESET & BASE STYLES ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: #000;
    color: #fff;
    height: 100vh;
    width: 100vw;
    position: relative;
}

/* ============ BACKGROUND VIDEO ============ */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
   
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
    backdrop-filter: blur(2px);
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
}

.brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.6);
}

.brand-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ============ MUTE BUTTON ============ */
.mute-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mute-btn i {
    font-size: 1.2rem;
    color: #fff;
}

.mute-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.mute-btn:active {
    transform: scale(0.95);
}

/* ============ HERO SECTION (Two Column) ============ */
.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    
    width: 50%;
    max-width: 500px;
    display: flex;
    
    align-items: center;
    
}

/* Left Side - Text */
.hero-left {
    flex: 1;
    animation: fadeInLeft 1s ease-out;
}

.greeting {
    font-size: 1rem;
    font-weight: 50;
    letter-spacing: 0px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typing-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.typing-text {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cursor {
    font-size: 1.8rem;
    color: #fff;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Right Side - Flip Card */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}




/* ============ RESPONSIVE ============ */
@media screen and (max-width: 1200px) {
    .name {
        font-size: 3.5rem;
    }
    
    .typing-text {
        font-size: 1.5rem;
    }
    
    .flip-card {
        width: 340px;
        height: 480px;
    }
}

@media screen and (max-width: 968px) {
    .hero {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-left {
        text-align: center;
    }
    
    .name {
        font-size: 3rem;
    }
    
    .flip-card {
        width: 320px;
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .brand-img {
        width: 60px;
        height: 60px;
    }
    
    .brand-text h3 {
        font-size: 1.2rem;
    }
    
    .name {
        font-size: 2.5rem;
    }
    
    .typing-text {
        font-size: 1.2rem;
    }
    
    .flip-card {
        width: 300px;
        height: 420px;
    }
    
    .social-bar {
        bottom: 30px;
        padding: 15px 30px;
        gap: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

