/* ============================= */
/* GLOBAL RESET */
/* ============================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* ============================= */
/* HEADER */
/* ============================= */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    background: #e5e5e5;
    position: relative;
}

.logo {
    height: 115px;
    width: auto;
}

/* HAMBURGER MENU BUTTON - FIXED */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* X Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    color: #f4b400;
}

.book-btn {
    background: #f4b400;
    padding: 10px 18px;
    border-radius: 6px;
    color: white;
}

/* ============================= */
/* HERO */
/* ============================= */

.hero {
    min-height: 100vh;
    background: url("images/hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 80px;
    color: white;
}

.hero h1 {
    font-size: 48px;
}

.hero h2 {
    font-size: 36px;
    margin: 10px 0;
}

.hero p {
    margin-bottom: 20px;
}

.hero-buttons a {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    margin-right: 15px;
}

.btn-primary {
    background: #f4b400;
    color: white;
}

.btn-secondary {
    background: white;
    color: #333;
}

/* ============================= */
/* PAGE HERO - RESTORED */
/* ============================= */
.page-hero{
  min-height: 260px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url("images/hero.jpg") center/cover no-repeat;
  color: #fff;
}

.page-hero-inner{
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero h1{
  font-size: 52px;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-shadow: 0 6px 22px rgba(0,0,0,0.45);
}

.page-hero p{
  font-size: 16px;
  font-weight: 600;
  opacity: 0.95;
}

@media (max-width: 768px){
  .page-hero{ min-height: 200px; padding: 15px 16px; }
  .page-hero h1{ font-size: 34px; }
  .page-hero p{ font-size: 14px; }
}

/* ============================= */
/* MENU HIGHLIGHTS */
/* ============================= */

.menu-section {
    padding: 10px 0;
    background: #f5f5f5;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.menu-container h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.menu-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    width: 350px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card h3 {
    padding: 20px 20px 5px;
}

.card p {
    padding: 0 20px;
    color: #777;
}

.price {
    display: block;
    padding: 20px;
    color: #f4b400;
    font-weight: bold;
}

/* ============================= */
/* ABOUT SECTION - FULLY RESTORED */
/* ============================= */

.about-section {
    background: #b7c6d3;
    padding: 100px 0;
}

.about-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 0 40px;
}

.about-media {
    flex: 1;
}

.about-media img {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #111;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #222;
}

.about-content strong {
    color: #f4b400;
    font-weight: 600;
}

.about-thankyou {
    margin-top: 15px;
    font-weight: 600;
    color: #111;
}

.about-cta{
  display: inline-block;
  margin-top: 20px;
  background: #f4b400;
  color: #111;
  padding: 14px 28px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(244,180,0,0.3);
  transition: all 0.3s ease;
}

.about-cta:hover{
  background: #e0a800;
  transform: translateY(-2px);
}

/* ============================= */
/* VALUES SECTION - RESTORED */
/* ============================= */

.values-section {
    padding: 100px 0;
    background: #f5f5f5;
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 30px;
    width: 320px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #f4b400;
    font-size: 20px;
}

.value-card p {
    font-size: 16px;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-6px);
}

/* ============================= */
/* BOOKING SECTION - FULLY RESTORED */
/* ============================= */

.booking-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.booking-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.booking-container h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #f4b400;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244,180,0,0.2);
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

textarea {
    min-height: 100px;
    resize: none;
}

.booking-btn {
    background: #f4b400;
    color: black;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.booking-btn:hover {
    background: #d89c00;
}

/* ============================= */
/* CONTACT PAGE - FULLY RESTORED */
/* ============================= */

.contact-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-section {
    max-width: 800px;
    margin: -40px auto 60px;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.contact-form textarea {
    min-height: 120px;
}

.contact-form button {
    background: #f4b400;
    border: none;
    padding: 14px;
    font-weight: bold;
    cursor: pointer;
}

.opening-hours {
    margin-top: 30px;
}

.opening-hours h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.closed {
    color: #e53935;
    font-weight: 600;
}

/* ============================= */
/* DELIVERY */
/* ============================= */

.delivery {
    padding: 80px 0;
    background: #0b3d2e;
    text-align: center;
}

.delivery-img {
    max-width: 1200px;
    width: 100%;
    border-radius: 20px;
}

/* ============================= */
/* PREMIUM FOOTER - FIXED */
/* ============================= */

.bk-footer {
    background: #111;
    padding: 40px 60px 20px;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    justify-content: flex-start;
}

.footer-logo {
    height: 120px;
    width: auto;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #f4b400;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease;
}

.footer-nav a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.footer-bottom p {
    font-size: 14px;
    color: #ccc;
}

.fastlane {
    color: #f4b400;
    text-decoration: none;
    font-weight: 600;
}

.fastlane:hover {
    text-decoration: underline;
}

/* ============================= */
/* MOBILE - FIXED HAMBURGER + ALL PAGES */
/* ============================= */

@media (max-width: 768px) {
    
    /* HEADER */
    .header {
        padding: 15px 20px;
    }
    
    .logo {
        height: 75px;
    }
    
    /* SHOW HAMBURGER */
    .menu-toggle {
        display: flex;
    }
    
    /* MOBILE NAV - FIXED POSITIONING */
    nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #e5e5e5 !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        z-index: 999 !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        padding: 40px 20px !important;
        display: flex !important; /* Always display flex */
    }
    
    /* SHOW MENU */
    nav.active {
        transform: translateX(0) !important;
    }
    
    nav a {
        margin: 12px 0 !important;
        font-size: 18px !important;
        padding: 12px 24px !important;
        width: 280px !important;
        text-align: center !important;
        border-radius: 8px !important;
        background: rgba(244,180,0,0.1) !important;
        border: 1px solid rgba(244,180,0,0.2) !important;
    }
    
    .book-btn {
        background: #f4b400 !important;
        color: white !important;
        font-weight: bold !important;
        border: none !important;
        margin-top: 15px !important;
    }
    
    /* HERO */
    .hero {
        padding: 60px 20px;
        text-align: center;
    }
    
    .hero h1 { font-size: 36px; }
    .hero h2 { font-size: 28px; }
    
    /* MENU */
    .menu-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .card {
        width: 100%;
        max-width: 400px;
    }
    
    /* ABOUT */
    .about-wrap {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-section {
        padding: 60px 20px;
    }
    
    .about-section h2 {
        font-size: 28px;
        text-align: center;
        padding: 0 10px;
    }
    
    /* VALUES */
    .values-grid {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    
    .value-card {
        width: 100%;
        padding: 30px 20px;
        text-align: center;
    }
    
    /* CONTACT */
    .contact-container {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .contact-map {
        width: 100%;
        margin-top: 20px;
    }
    
    .contact-map iframe {
        height: 300px;
    }
    
    /* FOOTER */
    .bk-footer {
        padding: 30px 20px 20px;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-left {
        width: 100%;
        justify-content: center;
    }
    
    .footer-logo {
        height: 90px;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-nav a {
        font-size: 16px;
        margin-left: 0;
    }
}

/* Small phones */
@media (max-width: 480px) {
    nav a {
        width: 250px !important;
        font-size: 16px !important;
    }
    
    .logo {
        height: 65px;
    }
}
