/* Custom Properties */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-card: #181818;
    --accent-gold: #c6a87c;
    --accent-green: #143621;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle background pattern placeholder */
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 40px 40px;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #e3c498;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.mt-2 { margin-top: 20px; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-main);
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 30px 0;  
}

 .divider::before,
.divider::after {
    content: "";
    flex: 1;  
    height: 1px;  
    background-color: #F0DEAB; 
}

 .divider img {
    width: 40px;  
    height: auto;
    margin: 0 20px;  }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--text-main);
    border: 1px solid var(--accent-green);
}

.btn-primary:hover {
    background-color: #0d2415;
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
        background: 
        url('../img/hero2.png') center/cover no-repeat,
        url('../img/hero.png') center/cover no-repeat;
}

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

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

.logo-top {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.logo-box {
    width: 50px;
    height: 50px;
    border: 2px solid var(--accent-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--accent-green);
    background: #fff;
    transform: rotate(45deg);
}
.logo-box > * { transform: rotate(-45deg); }

.hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--accent-gold);
    margin-bottom: 40px;
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Signature Dishes */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.dish-card {
    background-color: var(--bg-card);
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 30px 20px;
    transition: var(--transition);
}

.dish-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.dish-img {
    width: auto;
    height: auto;
    border-radius: 0.5rem;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid #222;
}

.dish-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.dish-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}
.about-bg{
    background-size: cover;
    background: 
    url('../img/aboutbg.png') center  no-repeat;
}
.about-image {
    flex: 1;
    padding: 3rem;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

/* Menu Section */
.menu-layout {
    display: flex;
    gap: 40px;
}

.menu-sidebar {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-category {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid #333;
    padding: 15px 20px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 4px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category:hover, .menu-category.active {
    background-color: var(--accent-green);
    color: var(--text-main);
    border-color: var(--accent-green);
}

.menu-category .icon {
    color: var(--accent-gold);
}

.menu-items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.menu-item-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.menu-item-title {
    font-size: 1.2rem;
    white-space: nowrap;
}

.menu-dots {
    flex-grow: 1;
    border-bottom: 1px dashed #555;
    margin: 0 15px;
}

.menu-price {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    white-space: nowrap;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.gallery-img.tall {
    grid-row: span 2;
}

.gallery-img:hover {
    opacity: 0.8;
}

/* Location Section */
.location-card {
    background: rgba(255, 255, 255, 0.05); 
    
     backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);  
    
     border: 1px solid rgba(255, 255, 255, 0.1); 
    
     box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    
     border-radius: 12px;
    display: flex;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.location-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
    color: var(--text-muted);
}

.location-map {
    padding: 1rem;
    flex: 1.2;
}

.location-map img {
    border-radius: 0.5rem;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    text-align: center;
    padding: 20px;
}

.quote-icon {
    font-size: 10rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: -10px;
}

.quote-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-author {
    color: var(--accent-gold);
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #444;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--accent-gold);
}

/* Footer */
.site-footer {
    padding: 0px 0 30px;
    background-color: var(--bg-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-logo .logo-box {
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-width: 1px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-contact h4, .footer-newsletter h4 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--accent-gold);
    padding-bottom: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--text-main);
    flex-grow: 1;
    outline: none;
}

.newsletter-form button {
    background: var(--accent-gold);
    border: none;
    color: var(--bg-primary);
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    font-size: 0.9rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    border: 1px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-icon:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

 
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    
    .about-content, .menu-layout {
        flex-direction: column;
    }
    
    .menu-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .menu-category { flex: 1 1 calc(33.333% - 10px); justify-content: center;}
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-card {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .divider::before { left: 5%; }
    .divider::after { right: 5%; }
}

 @media (max-width: 576px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    
    .menu-category { flex: 1 1 100%; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .gallery-img.tall { grid-row: span 1; }
    
    .testimonials-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .location-info { padding: 30px 20px; }
    
    .section-padding { padding: 50px 0; }
}
.menu-items {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
     transition: opacity 0.3s ease; 
}
.form-bg{
    background: 
    url('../img/formbg.png') center/cover  no-repeat;
}
.gallery-bg{
    background: 
    url('../img/gallerybg.png') center/cover  no-repeat;
}
 .gallery-img {
    cursor: pointer;
}

 .modal {
    display: none;  
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

 .modal-content {
    max-width: 80%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
    transition: opacity 0.2s ease;
}

 @keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

 .close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1001;
}

.close-modal:hover {
    color: var(--accent-gold);
}

 .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 30px;
    padding: 15px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-primary);
}

.prev-btn { left: 5%; }
.next-btn { right: 5%; }

 @media (max-width: 768px) {
    .nav-btn { font-size: 20px; padding: 10px 15px; }
    .prev-btn { left: 2%; }
    .next-btn { right: 2%; }
    .modal-content { max-width: 95%; }
}
.modal {
    display: none; 
    position: fixed !important;  
    z-index: 9999 !important; 
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}
#gallery-modal {
    display: none; 
    position: fixed !important; 
    z-index: 999999 !important;  
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.95) !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

 
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.1); }
    to { opacity: 1; transform: scale(1); }
}
 
.hero-content .logo-top {
    opacity: 0;
    animation: zoomIn 0.8s ease forwards;
}

.hero-content h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;  
}

.hero-content .subtitle {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;  
}

.hero-content .hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards; 
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px); 
    transition: all 1s cubic-bezier(0.5, 0, 0, 1); 
    will-change: opacity, transform; 
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.dish-card, .menu-category, .btn {
    transition: all 1s ease;
}