/* Reset và base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cinzel", serif;
    background: #000;
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
}

.container {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/* Video full màn hình */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay elements */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu button */
.menu-button {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Cinzel", serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.menu-button:hover {
    background: #ff6b35;
    color: #000;
}

/* Social links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid transparent;
}

.social-link.discord {
    color: #5865f2;
    border-color: #5865f2;
}

.social-link.discord:hover {
    background: #5865f2;
    color: white;
    transform: scale(1.1);
}

.social-link.twitter {
    color: #ffffff;
    border-color: #ffffff;
}

.social-link.twitter:hover {
    background: #ffffff;
    color: #000;
    transform: scale(1.1);
}

/* Main content overlay */
.main-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

/* Title overlay */
.tavern-title {
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Cinzel Decorative", serif;
}

/* Bio section overlay */
.bio-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 20px 20px;
    text-align: center;
}

.bio-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: "Cinzel Decorative", serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f0f0f0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    font-family: "Cinzel", serif;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Responsive design */
@media (max-width: 768px) {
    .tavern-title {
        font-size: 2.5rem;
    }
    
    .bio-section h2 {
        font-size: 2rem;
    }
    
    .bio-content p {
        font-size: 1rem;
    }
    
    .header {
        padding: 15px;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .tavern-title {
        font-size: 2rem;
    }
    
    .bio-section {
        padding: 30px 15px 15px;
    }
}


/* Menu dropdown styles */
.menu-container {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid #ff6b35;
    border-radius: 10px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.menu-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.menu-link:last-child {
    border-bottom: none;
}

.menu-link:hover {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    transform: translateX(5px);
}

.menu-icon {
    margin-right: 10px;
    font-size: 16px;
}

/* Responsive menu */
@media (max-width: 768px) {
    .dropdown-menu {
        min-width: 180px;
    }
    
    .menu-link {
        padding: 10px 15px;
        font-size: 14px;
    }
}




