/* Reset and Base Styles */
*{margin:0;padding:0;box-sizing:border-box}
body{font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;line-height:1.6;color:#333;background-color:#f8f6f0}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Typography */
h1,h2,h3,h4,h5,h6{font-weight:600;line-height:1.2;margin-bottom:1rem}
h1,h2{font-family:'Playfair Display',serif;font-weight:500}
h1{font-size:3rem}
h2{font-size:2.5rem}
h3{font-size:1.5rem}
h4{font-size:1.25rem}
p{margin-bottom:1rem;color:#555}

/* Buttons */
.btn{display:inline-block;padding:12px 24px;border-radius:8px;text-decoration:none;font-weight:500;font-size:16px;border:none;cursor:pointer;transition:all 0.3s ease;text-align:center}
.btn-primary{background-color:#d2691e;color:white}
.btn-primary:hover{background-color:#b8621b;transform:translateY(-2px)}
.btn-secondary{background-color:transparent;color:#d2691e;border:2px solid #d2691e}
.btn-secondary:hover{background-color:#d2691e;color:white}
.btn-large{padding:16px 32px;font-size:18px}
.btn-full{width:100%}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #d2691e;
    margin: 0;
}



.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d2691e;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-cta {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-family {
    background: rgba(210, 105, 30, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
    border-left: 4px solid #d2691e;
}

.family-intro {
    margin: 0;
    color: #333;
}

.family-intro strong {
    color: #d2691e;
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
}

.hero-placeholder,
.image-placeholder {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8ddd4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    min-height: 400px;
    text-align: center;
    padding: 2rem;
    font-style: italic;
    overflow: hidden;
}

.hero-image-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    max-width: 100%;
    max-height: 400px;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Our Family Story */
.story {
    background-color: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-block h3 {
    font-family: 'Playfair Display', serif;
    color: #d2691e;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Home Tour */
.home-tour {
    background-color: #f8f6f0;
}

.home-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.home-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Menu Section */
.menu {
    background-color: white;
}

.menu-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.menu-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.menu-categories {
    max-width: 600px;
    margin: 0 auto;
}

.menu-category {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 12px;
}

.menu-category h3 {
    text-align: center;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item-image {
    flex-shrink: 0;
}

.dish-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0ede8 0%, #d4c5b0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    padding: 0.5rem;
}

.menu-item-content {
    flex: 1;
}

.menu-item-content h4 {
    color: #d2691e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.menu-item-content p {
    color: #555;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.menu-note {
    background: rgba(139, 69, 19, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

.menu-note p {
    margin: 0;
    color: #333;
}

/* Weekend Events Section */
.weekend-events {
    background-color: #f8f6f0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-card {
    background: transparent;
    border-radius: 12px;
    padding: 0;
    position: relative;
    border: 1px solid #e0e0e0;
    perspective: 1000px;
    height: 320px;
    cursor: pointer;
}

.event-card.featured {
    border-color: #d2691e;
}

.event-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
}

.event-card:hover .event-card-inner {
    transform: rotateY(180deg);
}

.event-card-front,
.event-card-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    border-radius: 12px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    background: white;
}

.event-card-front {
    z-index: 2;
}

.event-card-back {
    background: #f8f6f0;
    transform: rotateY(180deg);
    z-index: 1;
    padding: 1.5rem;
}

.menu-preview-image {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #f0ede8 0%, #d4c5b0 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    text-align: center;
    flex-shrink: 0;
}

.menu-preview-title {
    font-family: 'Playfair Display', serif;
    color: #d2691e;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-align: center;
    flex-shrink: 0;
}

.menu-preview-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.menu-preview-items {
    list-style: none;
    padding: 0;
    font-size: 0.85rem;
    color: #555;
    max-height: 140px;
    overflow-y: auto;
    padding-right: 8px;
    margin: 0;
}

.menu-preview-items::-webkit-scrollbar {
    width: 4px;
}

.menu-preview-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.menu-preview-items::-webkit-scrollbar-thumb {
    background: #d2691e;
    border-radius: 2px;
}

.menu-preview-items::-webkit-scrollbar-thumb:hover {
    background: #b8621b;
}

.menu-preview-items li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #e0e0e0;
    line-height: 1.3;
}

.menu-preview-items li:last-child {
    border-bottom: none;
}

/* Fade effect for scrollable content */
.menu-preview-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 8px;
    height: 20px;
    background: linear-gradient(transparent, #f8f6f0);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-preview-container.has-scroll::after {
    opacity: 1;
}

.event-date {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #d2691e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(210, 105, 30, 0.3);
}

.event-date .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-content h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.event-content p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-menu-preview {
    background: rgba(210, 105, 30, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid #d2691e;
}

.event-menu-preview span {
    color: #d2691e;
    font-weight: 500;
    font-style: italic;
    font-size: 0.95rem;
}

.event-slots {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.slot {
    background: #333;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.event-status {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-status.available {
    background: #27ae60;
    color: white;
}

.event-status.limited {
    background: #f39c12;
    color: white;
}

.events-note {
    text-align: center;
    background: rgba(210, 105, 30, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.events-note p {
    margin: 0;
    color: #333;
    font-style: italic;
}

/* Experience Section */
.experience {
    background-color: white;
}

.experience-content {
    display: grid;
    gap: 4rem;
}

.time-slots-info {
    margin-bottom: 3rem;
}

.time-slots-info h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.slot-card {
    background: #f8f6f0;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.slot-card:hover {
    transform: translateY(-3px);
    border-color: #d2691e;
}

.slot-card h4 {
    color: #d2691e;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.slot-time {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.slot-card p {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.experience-timeline {
    position: relative;
}

.experience-timeline h3 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: #d2691e;
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-time {
    width: 100px;
    font-weight: 600;
    color: #d2691e;
    font-size: 1rem;
    flex-shrink: 0;
}

.timeline-time::after {
    content: '';
    position: absolute;
    left: 95px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #d2691e;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px #d2691e;
}

.timeline-content {
    padding-left: 2rem;
}

.timeline-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #555;
    line-height: 1.6;
}

.experience-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-card {
    background: #f5f1eb;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.detail-card h3 {
    color: #8b4513;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.detail-card p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Two-column layout for experience sections */
.experience-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Two-column layout for booking section */
.booking-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Form row layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .experience-two-column,
    .booking-two-column {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Testimonials */
.testimonials {
    background-color: #f5f1eb;
}

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #8b4513;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
    line-height: 1.7;
}

.testimonial-author strong {
    color: #8b4513;
    display: block;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Booking Section */
.booking {
    background-color: white;
}

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

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    color: #333;
    margin-bottom: 1rem;
}

.booking-info p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-item h4 {
    color: #8b4513;
    margin-bottom: 1rem;
}

.booking-item ul {
    list-style: none;
    padding: 0;
}

.booking-item li {
    padding: 0.25rem 0;
    color: #555;
}

.booking-item li::before {
    content: '•';
    color: #8b4513;
    margin-right: 0.5rem;
}

/* Form Styles */
.booking-form {
    background: #f5f1eb;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.booking-form h3 {
    font-family: 'Playfair Display', serif;
    color: #8b4513;
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b4513;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    color: #d4a574;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-contact p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-column h4 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        justify-content: space-between;
    }

    .nav-brand {
        order: 2;
        flex: 1;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
        order: 1;
    }

    .nav-cta {
        order: 3;
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .story-content {
        padding: 0 1rem;
    }

    .menu-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .dish-placeholder {
        width: 100px;
        height: 100px;
        font-size: 0.9rem;
    }

    .experience-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slots-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile touch-friendly flip cards */
    .event-card {
        height: auto;
        min-height: 320px;
    }

    /* Mobile touch flip - disable hover, use class toggle */
    .event-card:hover .event-card-inner {
        transform: none;
    }

    .event-card-inner.flipped {
        transform: rotateY(180deg);
    }

    /* Ensure scrolling works on mobile */
    .menu-preview-items {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #d2691e #f1f1f1;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .nav-brand {
        align-items: flex-start;
    }

    .logo {
        display: none;
    }



    .nav {
        padding: 1rem;
    }

    .menu-category {
        padding: 1.5rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}
