/* --- Variables & Reset --- */
:root {
    --plum-dark: #2E0A2E;
    --plum-main: #4C1C47;
    --plum-light: #7A2D75;
    --amber-main: #D97706;
    --amber-light: #FCD34D;
    --cream: #FDF8F5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--plum-main);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin-bottom: 3rem;
}

.tag {
    display: inline-block;
    background: var(--amber-main);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--amber-main);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--plum-main);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--plum-main);
}

.btn-secondary {
    background-color: var(--plum-main);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--plum-light);
}

/* --- Geometric Blobs --- */
.blob {
    position: fixed;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.6;
}

.blob-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--plum-light);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.blob-2 {
    bottom: 10%;
    left: -150px;
    width: 600px;
    height: 600px;
    background: var(--amber-light);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    background: var(--plum-main);
    color: var(--amber-main);
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-main);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--plum-main);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:not(.btn):hover {
    color: var(--amber-main);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: var(--plum-main);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    /* Using a warm, moody bar image */
    background: url('https://images.pexels.com/photos/157060/pexels-photo-157060.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') no-repeat center center/cover;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Plum gradient overlay */
    background: linear-gradient(135deg, rgba(76, 28, 71, 0.85) 0%, rgba(46, 10, 46, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 80px;
}

.hero-badge {
    background: var(--amber-main);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-amber {
    color: var(--amber-main);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background: var(--white);
}

/* --- About --- */
.about {
    background: var(--cream);
}

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

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--amber-main);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(217, 119, 6, 0.1);
    color: var(--plum-main);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--plum-main);
    margin-bottom: 16px;
}

/* --- Menu --- */
.menu-section {
    background: var(--plum-main);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Geometric accent */
.menu-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--plum-light);
    border-radius: 50%;
    opacity: 0.3;
}

.menu-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-header .section-title {
    color: var(--white);
}

.menu-header .section-subtitle {
    color: var(--amber-light);
    margin-left: auto;
    margin-right: auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    position: relative;
    z-index: 2;
}

.menu-column h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--amber-main);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

.menu-item {
    margin-bottom: 25px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.item-name {
    font-size: 1.25rem;
    font-weight: 600;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--amber-light);
}

.item-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

.menu-footer {
    text-align: center;
    margin-top: 60px;
}

/* --- Gallery --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

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

/* --- Contact --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 60px;
    background: var(--plum-main);
    color: var(--white);
}

.contact-info .section-title {
    color: var(--white);
}

.info-list {
    list-style: none;
    margin-top: 40px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-main);
}

.info-list a {
    color: var(--white);
    text-decoration: none;
}

.contact-form-wrapper {
    padding: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--plum-main);
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum-main);
}

.full-width {
    width: 100%;
}

.form-status {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
}

.form-status.success {
    color: green;
}

/* --- Footer --- */
.footer {
    background: var(--plum-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--white);
    opacity: 0.7;
    transition: var(--transition);
}

.social-links a:hover {
    opacity: 1;
    color: var(--amber-main);
}

.copyright {
    opacity: 0.5;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: var(--transition);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info, .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}
