
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.header {
    background: linear-gradient(135deg, #F4D58D, #D32F2F);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

#navMenu {
    display: flex;
    align-items: center;
    gap: 28px;
}

#navMenu a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

#navMenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

#navMenu a:hover {
    color: #000000;
}

#navMenu a:hover::after {
    width: 100%;
}

.book {
    background: linear-gradient(135deg, #111, #000);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 30px;
    border: 1px solid rgba(189, 189, 189, 0.6);
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.book:hover {
    background: rgb(48, 45, 45);
    color: #ffffff;
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.35);
    transform: translateY(-2px);
}

.book::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: all 0.6s ease;
}

.book:hover::after {
    left: 120%;
}

#navMenu a:has(.book)::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    #navMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000;
        flex-direction: column;
        gap: 18px;
        padding: 20px 0;
        display: none;
    }

    #navMenu.active {
        display: flex;
    }

    #navMenu a {
        font-size: 16px;
    }
}
.hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  font-family: 'Georgia', serif;
  min-height: 50vh;
  padding: 120px 20px 80px;
  box-sizing: border-box;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-content h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 30px;
  font-style: italic;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero-btn {
  display: inline-block;
  padding: 15px 35px;
  background-color: #D32F2F;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background-color: #000000;
  transform: scale(1.05);
}

.hero-content .note {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
  }
  .hero-content h2 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-btn {
    font-size: 16px;
    padding: 12px 28px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 80px 15px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content h2 {
    font-size: 20px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-btn {
    font-size: 15px;
    padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content h2 {
    font-size: 18px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-btn {
    font-size: 14px;
    padding: 8px 20px;
  }
}
.about-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/outside.webp') center/cover no-repeat;
    background-size: cover;
    filter: blur(1px);
    opacity: 2;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 20%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.about-box {
    position: relative;
    background: url('images/inside.webp') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 120px 60px;
    max-width: 900px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    text-align: center;
    overflow: hidden;
}

.about-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(16, 17, 16, 0.5);
    border-radius: 25px;
    z-index: 0;
}

.about-box h2,
.about-box p {
    position: relative;
    z-index: 1;
}

.about-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about-box p {
    font-size: 20px;
    line-height: 1.8;
}

/* ============================= */
/* CRAFTING SECTION */
.crafting-section {
    position: relative;
    width: 100%;
    padding: 100px 20px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font: bold;
    background-color: #FFFFFF;
    overflow: hidden;
}


.crafting-section > * {
    position: relative;
    z-index: 1;
}

.crafting-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #D32F2F;
}

.crafting-images {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.crafting-image {
    width: 400px;
    text-align: center;
}

.crafting-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
    border: 5px solid #F4D58D;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.crafting-image img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .crafting-images {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .crafting-image {
        width: 80%;
    }

    .crafting-image img {
        height: 350px;
    }
}

/* ============================= */
/* WHY SECTION */
.why-section {
    position: relative;
    width: 100%;
    padding: 120px 20px;
    overflow: hidden;
}

.why-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.14;
    mix-blend-mode: lighten;
    z-index: 0;
}

.why-section > * {
    position: relative;
    z-index: 1;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
}

.why-text {
    width: 50%;
}

.why-text h3 {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #050404;
    margin-bottom: 12px;
}

.why-text h1 {
    font-size: 42px;
    color: #070606;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    font-weight: bold;
}

.why-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    max-width: 520px;
}

.why-images {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-image-circle {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
}

.why-image-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.why-image-circle::after {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 3px solid rgba(244, 213, 141, 0.7);
}

@media (max-width: 992px) {
    .why-container {
        flex-direction: column;
        text-align: center;
    }

    .why-text,
    .why-images {
        width: 100%;
    }

    .why-image {
        width: 90%;
        margin: 0 auto;
    }

    .why-image img {
        height: 300px;
    }
}

/* ============================= */
/* OUR SECTION */
.our {
    background-color: #ffebe6; /* very light red/pink tint */
    padding: 80px 20px;
}

.our-container {
    text-align: center;
    padding: 50px 20px;
}

.our-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 40px;
    color: #0c0b0b;
}

.our-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: linear-gradient(135deg, #F4D58D, #D32F2F);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 450px;
    text-align: center;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #0a0909;
}

.card p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #020202;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ============================= */
/* GALLERY SECTION */
.gallery {
    padding: 80px 0;
    background-color: #F4D58D;
}

.gallery-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container h1 {
    text-align: center;
    font-family: 'Georgia', serif;
    font-size: 42px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.gallery-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.gallery-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.gallery-card {
    flex: 0 0 calc((100% - 60px)/3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    height: 400px;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.prev, .next {
    background-color: rgba(0,0,0,0.6);
    color: #FFFFFF;
    border: none;
    font-size: 40px;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease;
}

.prev { left: -20px; }
.next { right: -20px; }

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

@media (max-width: 991px) {
    .gallery-card {
        flex: 0 0 calc((100% - 30px)/2);
        height: 350px;
    }
}

@media (max-width: 600px) {
    .gallery-card {
        flex: 0 0 100%;
        height: 300px;
    }
    .prev, .next {
        font-size: 30px;
        padding: 10px;
    }
}



.footer {
    background-color: #F4D58D;
    color: #fff;
    font-family: 'Poppins', 'Arial', sans-serif;
    padding-top: 50px;
    position: relative;
}

.footer-bg {
    background: linear-gradient(135deg, #F4D58D, #D32F2F);
    padding: 50px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* -------------------- LEFT: BRAND + QUOTE + LINKS + SOCIAL -------------------- */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Logo + Brand Name */
.brand-logo img {
    width: 80px;              /* slightly bigger */
    height: 80px;
    object-fit: cover;         /* cover the container perfectly */
    border-radius: 50%;        /* make it a perfect circle */
    border: 2px solid #D4AF37; /* golden border */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

/* Hover effect */
.brand-logo img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6); /* golden glow on hover */
}

.brand-logo h1 {
    font-size: 26px;
    color: #113313;
    margin: 0;
    font-weight: 700;
}

/* Quote / tagline */
.footer-quote {
    font-size: 17px;
    font-style: italic;
    color: #113313;
    margin: 0;
}

/* 5 Links */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: black;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, filter 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* -------------------- MIDDLE: ADDRESS -------------------- */
.footer-address h2 {
    font-size: 25px;
    color: #060706;
    margin-bottom: 15px;
}

.footer-address p {
    font-size: 19px;
    line-height: 1.6;
    color: #0f0d0d;
}
.footer-address-map {
    display: flex;
    gap: 30px; /* space between address and map */
    align-items: flex-start; /* align top of text with map */
}

/* Address Section */
.address-section h4 {
    font-size: 18px;
    color: #0c0a0a;
    margin-bottom: 10px;
}

.address-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    max-width: 200px; /* keep text neat */
}

/* Map Section */
.map-section h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

.map-section iframe {
    border-radius: 10px;
    flex: 1;          /* map takes remaining space */
    min-width: 250px; /* prevent map from shrinking too small */
}

/* Responsive: stack vertically on smaller screens */


.footer-address iframe {
    border-radius: 10px;
    margin-top: 10px;
}

/* -------------------- RIGHT: SERVING HOURS -------------------- */
.footer-hours {
    font-family: 'Lora', serif;       /* elegant and readable */
    color: #000000;                   /* soft off-white for gold background */
    line-height: 1.8;                 /* slightly more spacing for clarity */
    margin-top: -1px;
}

.footer-hours h2 {
    font-family: 'Playfair Display', serif; /* decorative yet classy */
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000000;                          /* bright heading */
    letter-spacing: 1px;
}

.footer-hours p {
    font-size: 16px;
    margin: 4px 0;
    color: #000000;                       /* easy on eyes */
}

.footer-hours strong {
    color: #f1f1f1;                       /* golden accent for days */
    font-weight: 600;
}



/* -------------------- COPYRIGHT -------------------- */
.footer p.copyright {
    position: absolute;  /* position relative to footer */
    left: 0;            /* stick to the right edge */
    bottom: 0;           /* optional: bottom of footer */
    margin: 0;
    padding: 10px 20px;  /* optional spacing from edge */
    font-size: 16px;
    color: #000000;
    background: transparent;
}

.footer p.inxcel {
    position: absolute;  /* position relative to footer */
    right: 0;            /* stick to the right edge */
    bottom: 0;           /* optional: bottom of footer */
    margin: 0;
    padding: 10px 20px;  /* optional spacing from edge */
    font-size: 16px;
    color: #080707;
    background: transparent;
}


/* -------------------- RESPONSIVE -------------------- */


/* Desktop: keep left and right at edges */

/* Mobile: stack and center */
@media screen and (max-width: 768px) {
    .footer p.copyright,
    .footer p.inxcel {
        position: static;         /* cancel absolute positioning */
        width: 100%;              /* full width */
        text-align: center;       /* center text */
        padding: 5px 0;           /* smaller padding for mobile */
        margin: 0;
        font-size: 13px;          /* slightly smaller font */
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-left {
        align-items: flex-start;
    }
    .brand-logo img {
        width: 70px;
        height: 70px;
    }
    .footer-links {
        gap: 10px;
    }
    .footer-address iframe {
        height: 200px;
    }
}

@media (max-width: 600px) {
    .brand-logo h1 {
        font-size: 20px;
    }
    .footer-quote,
    .footer-links a,
    .footer-hours p,
    .footer-address p {
        font-size: 13px;
    }
    .footer-social a img {
        width: 24px;
        height: 24px;
    }
}
