/* ============================================
   Variables CSS
   ============================================ */
:root {
    --primary-color: #d4af37;
    --secondary-color: #8b4513;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.brand-text {
    color: var(--primary-color);
}

.brand-original {
    color: var(--white);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* ============================================
   Staggered Menu
   ============================================ */
.menu-toggle {
    z-index: 1001;
    position: relative;
    border: none;
    background: transparent;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}

.menu-toggle:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
    outline: none;
}

.menu-toggle .navbar-toggler-icon {
    transition: var(--transition);
}

.staggered-menu.active ~ .navbar .menu-toggle .navbar-toggler-icon {
    opacity: 0.7;
}

.staggered-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    pointer-events: none;
    visibility: hidden;
}

.staggered-menu.active {
    pointer-events: all;
    visibility: visible;
}

.menu-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
}

.menu-layer-1 {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    opacity: 1;
    z-index: 1;
}

.menu-layer-2 {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.92) 0%, rgba(107, 52, 16, 0.92) 100%);
    opacity: 0.95;
    z-index: 2;
}

.menu-layer-3 {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.88) 0%, rgba(184, 148, 31, 0.88) 100%);
    opacity: 0.9;
    z-index: 3;
}

.menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
}

.staggered-menu.active .menu-content {
    pointer-events: all;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 11;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

.menu-close:hover {
    filter: brightness(1.3);
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.6);
}

.menu-close:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: scale(1.05);
}

.menu-nav {
    width: 100%;
    max-width: 600px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    opacity: 0;
    transform: translateX(50px);
}

.menu-link {
    display: block;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    text-decoration: none;
    padding: 1rem 0;
    position: relative;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.menu-link::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.menu-link:hover {
    color: var(--primary-color);
    transform: translateX(20px);
    text-shadow: 0 3px 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
    filter: brightness(1.3);
}

.menu-link:hover::before {
    width: 1.5rem;
}

.menu-link.active {
    color: var(--primary-color);
    text-shadow: 0 3px 20px rgba(212, 175, 55, 0.8), 0 0 30px rgba(212, 175, 55, 0.4);
    filter: brightness(1.3);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('img/5283d81c664b43c5f57a3a186d273063.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.title-main {
    color: var(--primary-color);
    display: block;
}

.title-original {
    color: var(--white);
    display: block;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* ============================================
   About Section
   ============================================ */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.about-image-wrapper img {
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.feature-item i {
    font-size: 1.3rem;
}

/* ============================================
   Menu Gallery
   ============================================ */
.menu-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 300px;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.menu-card:hover .menu-overlay {
    transform: translateY(0);
}

.menu-overlay h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.2rem;
}

/* ============================================
   Hours Section
   ============================================ */
.hours-card {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition);
}

.hours-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.hours-item .day {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: #666;
}

.instagram-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.instagram-link:hover {
    color: #b8941f;
    text-decoration: underline;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.social-link {
    color: var(--white);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #b8941f;
    transform: translateY(-5px);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Responsive Design - Tablets
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-card {
        height: 250px;
    }
    
    .hours-card {
        padding: 2rem;
    }
}

/* ============================================
   Responsive Design - Mobile
   ============================================ */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .menu-link {
        font-size: 2rem;
        letter-spacing: 1.5px;
        padding: 0.75rem 0;
    }
    
    .menu-close {
        top: 1.5rem;
        right: 1.5rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
    
    .menu-content {
        padding: 1.5rem;
    }
    
    .menu-list {
        gap: 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-main,
    .title-original {
        display: inline;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-outline-light {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .menu-card {
        height: 200px;
    }
    
    .menu-overlay {
        padding: 1.5rem;
    }
    
    .menu-overlay h5 {
        font-size: 1rem;
    }
    
    .hours-card {
        padding: 1.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hours-item .time {
        text-align: left;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .map-container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
    
    .scroll-indicator {
        font-size: 1.5rem;
    }
}

/* ============================================
   Responsive Design - Small Mobile
   ============================================ */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .menu-link {
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        padding: 0.5rem 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 0, 0, 0.4);
    }
    
    .menu-close {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }
    
    .menu-list {
        gap: 0.5rem;
    }
    
    .menu-content {
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 4rem;
    }
    
    .menu-nav {
        width: 100%;
        max-width: 100%;
    }
    
    .menu-layer-1,
    .menu-layer-2,
    .menu-layer-3 {
        opacity: 1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .menu-card {
        height: 180px;
    }
    
    .hours-card {
        padding: 1rem;
    }
    
    .hours-item .day {
        font-size: 1rem;
    }
    
    .hours-item .time {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .contact-details h5 {
        font-size: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
}

/* ============================================
   Responsive Design - Extra Small Mobile
   ============================================ */
@media (max-width: 400px) {
    .menu-link {
        font-size: 1.3rem;
        letter-spacing: 1px;
        padding: 0.4rem 0;
    }
    
    .menu-close {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    
    .menu-content {
        padding: 0.75rem;
        padding-top: 3.5rem;
    }
    
    .menu-list {
        gap: 0.3rem;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .back-to-top,
    .scroll-indicator,
    .staggered-menu {
        display: none;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
}
