/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff8f0;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

/* ===== Header ===== */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #d4a762;
    margin-right: 10px;
    transition: transform 0.5s;
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo:hover .logo-img {
    transform: rotate(10deg) scale(1.1);
}

.logo-text h1 {
    font-size: 22px;
    color: #d4a762;
}

.logo-text .tagline {
    font-size: 12px;
    color: #8b4513;
}

/* ===== Navigation ===== */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s, transform 0.3s;
}

nav a:hover {
    color: #d4a762;
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    text-align: center;
    padding: 140px 20px;
    background: linear-gradient(rgba(255,248,240,0.9), rgba(255,248,240,0.9)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
}

.hero h2 {
    font-size: 38px;
    color: #8b4513;
    animation: fadeUp 1s ease forwards;
}

.hero p {
    font-size: 18px;
    margin-top: 12px;
    color: #5c3a21;
    animation: fadeUp 1.3s ease forwards;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 32px;
    background: #d4a762;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #8b4513;
    transform: translateY(-4px);
}

/* ===== Sections ===== */
section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 30px;
    color: #d4a762;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #5c3a21;
    margin-bottom: 35px;
}

/* ===== Menu Grid ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.menu-card {
    background: #fff3e0;
    padding: 20px;
    border-radius: 18px;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.menu-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.25);
}

.menu-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s;
}

.menu-card:hover .menu-img img {
    transform: scale(1.05);
}

.menu-info h3 {
    margin-top: 12px;
    color: #8b4513;
    font-size: 20px;
}

.menu-info p {
    margin: 6px 0;
    color: #5c3a21;
    font-size: 14px;
}

.menu-price {
    font-weight: bold;
    color: #db1658;
    margin-top: 5px;
}

/* ===== Events Grid ===== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.event-card {
    background: #fff3e0;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.event-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-info {
    padding: 18px;
    text-align: left;
}

/* ===== Contact ===== */
.contact-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
}

form input, form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

form button {
    width: 100%;
    padding: 14px;
    background: #d4a762;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

form button:hover {
    background: #8b4513;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 15px;
}

/* ===== Footer ===== */
footer {
    background: #8b4513;
    color: #fff8f0;
    padding: 25px 20px;
    text-align: center;
}

.footer-column h3 {
    color: #fff;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.3rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #d4a762;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width:768px){
    nav{display:none;}
    nav.active{display:block;}
    nav ul{flex-direction:column; background:white; padding:15px;}
    .menu-toggle{display:block;}
    .contact-container{grid-template-columns:1fr;}
    .menu-img img{height:140px;}
    .hero{padding:100px 20px;}
    .hero h2{font-size:28px;}
}
