@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #d4af37;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.cart-btn:hover {
    background: #d4af37;
    color: #0f0f0f;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #d4af37;
    color: #0f0f0f;
    font-size: 0.8rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.whatsapp-nav {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)), url('https://i.imgur.com/7CAsGE1.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(212,175,55,0.1), transparent);
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 6px solid #d4af37;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s;
    margin: 0 10px;
}

.btn-primary {
    background: #d4af37;
    color: #0f0f0f;
    border: none;
}

.btn-primary:hover {
    background: #f5d47a;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #0f0f0f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin: 4rem 0 3rem;
    color: #d4af37;
    position: relative;
}

.section-title:after {
    content: '';
    width: 80px;
    height: 3px;
    background: #d4af37;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.menu-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(212,175,55,0.2);
}

.menu-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 600;
}

.add-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 12px;
    background: #d4af37;
    color: #0f0f0f;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    transition: all 0.4s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(212,175,55,0.3);
}

.banquet-section {
    background: #1a1a1a;
    padding: 5rem 0;
}

.banquet-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.banquet-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.banquet-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.banquet-info ul {
    list-style: none;
    margin: 2rem 0;
}

.banquet-info ul li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon {
    font-size: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    border: none;
}

.footer {
    background: #0a0a0a;
    padding: 3rem 0;
    border-top: 1px solid #d4af37;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #d4af37;
}

.footer-links a {
    margin: 0 15px;
    color: #ccc;
    text-decoration: none;
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: transform 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.15);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: #1a1a1a;
    max-width: 480px;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    color: #d4af37;
}

.cart-items {
    max-height: 420px;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.cart-item-info {
    flex: 1;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #333;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.cart-total {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 600;
    border-top: 2px solid #d4af37;
}

.cart-buttons {
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

.bill-form {
    padding: 1.5rem;
}

.bill-form label {
    display: block;
    margin: 1rem 0 8px;
    font-weight: 500;
}

.bill-form input {
    width: 100%;
    padding: 14px;
    background: #0f0f0f;
    border: 1px solid #d4af37;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
}

.bill-preview {
    background: #111;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 12px;
}

.bill-total {
    text-align: right;
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .banquet-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
  }
