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

html {
    overflow-x: hidden !important;
}


body {
    font-family: 'Manrope', sans-serif;
    background-color: #f8f5f7;
    color: #151315;
}

a {
    text-decoration: none;
    color: unset;
}


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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    height: 80px;
    background: rgba(248,245,247,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #ffe5f4;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav_logo {
    height: 70px;
    width: 120px;
}

.logo-text {
    font-weight: 800;
    text-transform: uppercase;
}

.menu {
    display: flex;
    gap: 40px;
}

.menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
    color: #1b120F
}


.menu a:hover {
    color: #5f4942;
}

.nav-btn{
    background: #1b120F;
    color: white;
    padding: 12px 28px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

/* ========================================= */
/* Hide Mobile Button on Desktop */
/* ========================================= */
.mobile-btn {
    display: none;
}

/* ========================================= */
/* Hamburger */
/* ========================================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #1b120F;
    border-radius: 3px;
    transition: 0.3s ease;
}

/* ========================================= */
/* Mobile Nav */
/* ========================================= */
@media (max-width: 900px) {

    .menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 40px 0;
        background: rgba(248,245,247,0.98);
        backdrop-filter: blur(12px);
        transform: translateY(-120%);
        border-bottom: 1px solid #ffe5f4;
        display: none;
    }

    .menu.is-active {
        transform: translateY(0);
        display: flex;
        
    
    }

    .desktop-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .hamburger {
        display: flex;
    }
    
}

/* ========================================= */
/* Hamburger Animation */
/* ========================================= */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-13px);
}


/* Hero */
.hero {
    position: relative;
    height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(7px);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #f8f5f7 40%, transparent);
    
}

.hero-content {
    position: relative;
    max-width: 600px;
    padding: 0 24px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.highlight {
    color: #f5e0ec;
    font-style: italic;
    font-weight: 300;
}

.hero p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.primary-btn {
    background: #1b120F;
    color: white;
    padding: 14px 32px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
}

.secondary-btn {
    background: white;
    border: 1px solid #ffe5f4;
    padding: 14px 32px;
    border-radius: 9999px;
    cursor: pointer;
}


@media (max-width: 479px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {

    .hero {
        height: 100vh;
        padding-top: 100px;
    }

    .hero-content {
        max-width: 500px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.05rem;
    }
}

/* Short Viewports (Height Fix) */

@media (max-height: 700px) {

    .hero {
        height: auto;
        min-height: 100vh;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

/* Services */
.services {
    padding: 100px 24px;
    background: white;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 450px;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.card:hover img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27,18,15,0.9), transparent);
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
}

.card-content h3 {
    font-size: 1.8rem;
    margin: 10px 0;
    color: white
}

.card-content button {
    margin-top: 10px;
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 479px) {

    .services {
        padding: 70px 16px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .cards {
        gap: 20px;
    }

    .card {
        height: 380px;
        min-height: 350px;
        max-height: 420px;
    }

    .card-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .card-content h3 {
        font-size: 1.4rem;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}



/* signature dishes */

.signature {
    padding: 80px 60px;
}

.signature h2 {
    margin-bottom: 30px;
    text-align: center;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.plate {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.plate-info h3 {
    color: white
}


.dish {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Gradient overlay */
.plate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.836), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Text content */
.plate-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

/* Hover Effects */
.plate:hover .dish {
    transform: scale(1.1);
}

.plate:hover::after {
    opacity: 1;
}

.plate:hover .plate-info {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 479px) {

    .signature {
        padding: 60px 16px;
    }

    .signature h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .gallery {
        gap: 15px;
    }

    .plate {
        min-height: 220px;
        max-height: 300px;
    }

    .plate-info {
        left: 15px;
        bottom: 15px;
        font-size: 0.9rem;
    }

    /* Enable overlay by default on touch devices */
    .plate::after {
        opacity: 1;
    }

    .plate-info {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .signature {
        padding: 70px 20px;
    }

    .signature h2 {
        font-size: 2rem;
    }

    .plate {
        min-height: 240px;
        max-height: 320px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .signature {
        padding: 80px 40px;
    }

    .signature h2 {
        font-size: 2.3rem;
    }

    .plate {
        min-height: 260px;
        max-height: 360px;
    }
}






/* ===== About Owner Section ===== */

.about-owner {
    padding: 80px 10%;
    background-color: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #222;
}

.owner-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #c19a6b; /* soft gold accent */
}

.owner-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

@media (max-width: 479px) {

    .about-owner {
        padding: 60px 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 30px;
    }

    .about-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .owner-name {
        font-size: 1rem;
        text-align: center;
    }

    .owner-description {
        font-size: 0.95rem;
        text-align: center;
    }

    .about-image img {
        max-height: 350px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .about-owner {
        padding: 70px 30px;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .owner-name,
    .owner-description {
        text-align: center;
    }

    .about-image img {
        max-height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .about-owner {
        padding: 80px 6%;
    }

    .about-container {
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2.2rem;
    }

    .about-image img {
        min-height: 350px;
        max-height: 500px;
    }
}


/* Testimonials */


.container1_s5 {
    width: 100vw;
    max-height: 699px;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

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

.wrapper2_c1_s5 {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.test_car {
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: transform 0.45s ease-in-out;
    will-change: transform;
    padding-left: 50vw;
    padding-right: 50vw;
    box-sizing: content-box;
}

.testimony {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-radius: 6px;
    min-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
    transform: scale(0.85);
    opacity: 0.5;
}

.testimony.active {
    transform: scale(1);
    opacity: 1;
}

/* Card style */
.testimony_card {
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
}

.testimony_card p {
    font-size: 1.2rem;
}

.customer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.customer_img img {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.ci_p2 {
    color: var(--primary-color);
}

/* Arrow Buttons */
.arrow2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #dd5903;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
}

.arrow2 svg {
    width: 24px;
    height: 24px;
}

.left-button {
    left: 0;
}

.right-button {
    right: 0;
}

.arrow2:hover {
    background-color: #000;
    color: white;
}

@media (max-width: 479px) {

    .container1_s5 {
        max-height: none;
        padding: 60px 0;
    }

    .wrapper1_c1_s5 {
        margin-bottom: 40px;
    }

    .test_car {
        gap: 1.5rem;
        padding-left: 20vw;
        padding-right: 20vw;
    }

    .testimony {
        min-width: 85vw;
        transform: scale(0.9);
    }

    .testimony_card {
        padding: 25px;
    }

    .testimony_card p {
        font-size: 1rem;
    }

    .customer_img img {
        width: 55px;
        height: 55px;
    }

    .arrow2 {
        width: 45px;
        height: 45px;
    }

    .arrow2 svg {
        width: 18px;
        height: 18px;
    }
}


@media (min-width: 480px) and (max-width: 767px) {

    .test_car {
        gap: 2rem;
        padding-left: 25vw;
        padding-right: 25vw;
    }

    .testimony {
        min-width: 80vw;
    }

    .testimony_card {
        padding: 30px;
    }

    .arrow2 {
        width: 55px;
        height: 55px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .container1_s5 {
        padding: 80px 0;
    }

    .test_car {
        padding-left: 35vw;
        padding-right: 35vw;
        gap: 2.5rem;
    }

    .testimony {
        min-width: 500px;
    }

    .testimony_card p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) and (max-width: 1439px) {

    .test_car {
        padding-left: 45vw;
        padding-right: 45vw;
    }

    .testimony {
        min-width: 550px;
    }
}



/* ================= CTA ================= */
.cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    background: #f0d6e0;
    border-radius: 30px;
    margin: 80px 8%;
}

.btn-dark{
    background: #1b120F;
    color: white;
    padding: 12px 28px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    margin-top: 20px;
}

.cta-text {
    max-width: 400px;
}

.cta-image img {
    width: 300px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 479px) {

    .cta {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        margin: 50px 20px;
        border-radius: 20px;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-image img {
        width: 100%;
        max-width: 260px;
        min-width: 180px;
        margin-top: 30px;
    }

    .btn-dark {
        width: 100%;
        max-width: 260px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {

    .cta {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
        margin: 60px 30px;
    }

    .cta-text {
        max-width: 100%;
    }

    .cta-image img {
        width: 100%;
        max-width: 300px;
        margin-top: 30px;
    }

    .btn-dark {
        max-width: 280px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .cta {
        padding: 70px 6%;
        margin: 70px 6%;
        gap: 40px;
    }

    .cta-text {
        max-width: 350px;
    }

    .cta-image img {
        width: 260px;
        min-width: 220px;
        max-width: 320px;
    }
}

@media (min-width: 1800px) {

    .cta {
        max-width: 1700px;
        margin-left: auto;
        margin-right: auto;
    }
}



/*About Section...Our Story */


/* =========================
   BASE STYLES (Mobile First)
========================= */

.about-section {
    padding: 60px 16px;
    background-color: #f9f6f2;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.about-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
    color: #b38b59;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555;
}

.about-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #b38b59;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s ease;
    font-size: 14px;
}

.about-btn:hover {
    background-color: #9c764a;
}

/* =========================
   320px and below (Small phones)
========================= */

@media (max-width: 360px) {
    .about-content h2 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 14px;
    }
}

/* =========================
   576px+ (Large Phones)
========================= */

@media (min-width: 576px) {
    .about-section {
        padding: 70px 24px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content h3 {
        font-size: 18px;
    }
}

/* =========================
   768px+ (Tablets)
========================= */

@media (min-width: 768px) {
    .about-container {
        flex-direction: row;
        align-items: center;
        gap: 50px;
    }

    .about-content {
        text-align: left;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-btn {
        font-size: 15px;
    }
}

/* =========================
   992px+ (Small Laptops)
========================= */

@media (min-width: 992px) {
    .about-section {
        padding: 90px 40px;
    }

    .about-content h2 {
        font-size: 36px;
    }

    .about-content h3 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 17px;
    }
}

/* =========================
   1200px+ (Large Desktops)
========================= */

@media (min-width: 1200px) {
    .about-container {
        gap: 70px;
    }

    .about-content h2 {
        font-size: 40px;
    }

    .about-content p {
        font-size: 18px;
        line-height: 1.9;
    }
}

/* =========================
   1600px+ (Ultra Wide Screens)
========================= */

@media (min-width: 1600px) {
    .about-section {
        padding: 120px 0;
    }

    .about-container {
        max-width: 1500px;
    }

    .about-content h2 {
        font-size: 44px;
    }

    .about-content p {
        font-size: 19px;
    }
}

/* Event Gallery */

/* =========================
   Gallery Section
========================= */

.gallery-section {
    padding: 60px 20px;
    background: #ffffff;
}

.gallery-container {
    max-width: 1400px; /* prevents overstretch on big screens */
    margin: 0 auto;
}

.gallery-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 40px;
    color: #2c2c2c;
}

/* =========================
   Grid Layout
========================= */

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

/* =========================
   Gallery Item
========================= */

.gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3; /* keeps images uniform */
    overflow: hidden;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* prevents stretching */
    display: block;
    transition: transform 0.4s ease;
}

/* Hover effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

/* =========================
   576px+ (Large phones)
========================= */

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   768px+ (Tablets)
========================= */

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================
   992px+ (Laptops)
========================= */

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =========================
   1200px+ (Large screens)
========================= */

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .gallery-title {
        font-size: 32px;
    }
}

/* =========================
   1600px+ (Ultra wide screens)
========================= */

@media (min-width: 1600px) {
    .gallery-container {
        max-width: 1500px; /* locks layout width */
    }
}

/* ================= Lightbox ================= */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 20px;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover,
.next:hover,
.close:hover {
    opacity: 0.7;
}

/* Services Page */


/* =========================
   Hero Section
========================= */

.services-hero {
    text-align: center;
    padding: 80px 20px;
    background: #2c2c2c;
    color: white;
}

.services-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.services-hero p {
    font-size: 18px;
    opacity: 0.8;
}

/* =========================
   Pricing Section
========================= */

.services-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    gap: 40px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h2 {
    margin-bottom: 30px;
    font-size: 28px;
    color: #b38b59;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item h3 {
    font-size: 16px;
    font-weight: 500;
}

.price-item small {
    font-size: 13px;
    color: #777;
}

.price-item span {
    font-weight: bold;
    font-size: 16px;
}

/* Highlight Box */
.featured {
    border: 2px solid #b38b59;
}

/* =========================
   Order Section
========================= */

.order-section {
    text-align: center;
    padding: 80px 20px;
    background: white;
}

.order-section h1 {
    margin-bottom: 20px;
    font-size: 28px;
}

.order-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 16px;
    color: #555;
}

.order-btn {
    padding: 14px 40px;
    background: #b38b59;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.order-btn:hover {
    background: #9c764a;
}

/* =========================
   Responsive
========================= */

@media (min-width: 768px) {
    .services-container {
        grid-template-columns: 1fr 1fr;
    }

    .services-hero h1 {
        font-size: 44px;
    }
}

@media (min-width: 1200px) {
    .services-container {
        gap: 60px;
    }

    .pricing-card {
        padding: 50px;
    }
}


/* =========================
   Event Section
========================= */

.event-services {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(to right, #f9f6f2, #ffffff);
}

.content {
    max-width: 800px;
    text-align: center;
}

.content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #b38b59;
}

.content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* =========================
   Button Styling
========================= */

.book-btn {
    padding: 15px 45px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    background-color: #b38b59;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background-color: #9c764a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================
   Responsive
========================= */

@media (min-width: 768px) {
    .content h1 {
        font-size: 44px;
    }

    .content p {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .event-services {
        padding: 120px 20px;
    }

    .content {
        max-width: 900px;
    }
}


/* =========================
   Contact-form
========================= */

.contact-hero {
    text-align: center;
    padding: 80px 20px;
    background: #2c2c2c;
    color: white;
}

.contact-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.8;
}

/* =========================
   Layout
========================= */

.contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: grid;
    gap: 50px;
}

/* =========================
   Contact Info
========================= */

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #b38b59;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
    color: #b38b59;
    font-weight: 500;
    transition: 0.3s;
}

.social-links a:hover {
    color: #9c764a;
}

/* =========================
   Forms
========================= */

.forms-container {
    display: grid;
    gap: 40px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-card h2 {
    margin-bottom: 25px;
    color: #b38b59;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, select, textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

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

.contact-button {
    padding: 14px;
    border: none;
    background: #b38b59;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s ease;
}

.contact-button:hover {
    background: #9c764a;
}

/* =========================
   Responsive
========================= */

@media (min-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr 2fr;
    }

    .forms-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-hero h1 {
        font-size: 44px;
    }
}

@media (min-width: 1200px) {
    .contact-container {
        gap: 70px;
    }

    .form-card, .contact-info {
        padding: 50px;
    }
}


/* =========================
   Thank You Card
========================= */

.thank-you-section {
    width: 100%;
    padding: 20px;
}

.thank-you-card {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.icon {
    font-size: 50px;
    color: #b38b59;
    margin-bottom: 20px;
}

.thank-you-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.thank-you-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* =========================
   Button
========================= */

.home-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: #b38b59;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.home-btn:hover {
    background-color: #9c764a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================
   Responsive
========================= */

@media (max-width: 600px) {
    .thank-you-card {
        padding: 40px 25px;
    }

    .thank-you-card h1 {
        font-size: 28px;
    }

    .thank-you-card p {
        font-size: 16px;
    }
}


/* Container */
.container1 {
    max-width: 900px;
    margin: 0px auto;
    background: #ffffff;
    padding: 80px 40px 40px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Header */
.header1 {
    margin-bottom: 40px;
}

.header1 h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #222;
}

.company-name {
    font-weight: 600;
    color: #555;
}

.effective-date {
    font-size: 0.9rem;
    color: #888;
}

/* Sections */
section {
    margin-bottom: 30px;
}

section h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #111;
    border-left: 4px solid #c59d5f;
    padding-left: 10px;
}

section h3 {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #444;
}

/* Lists */
ul {
    margin-left: 20px;
    margin-top: 8px;
}

ul li {
    margin-bottom: 6px;
}


/* Responsive */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 25px;
    }

    .header1 h1 {
        font-size: 1.8rem;
    }
}






/* ================= FOOTER ================= */
.footer {
    background: #bd9687;
    color: #eee;
    padding: 60px 8% 20px;
}

.logo-footer {
    height: 125px;
    width: 225px;
} 

.logo-footer img {
    height: 100%;
    width: 100%;
}

.icon-container-footer {
    display: flex;
    gap: 20px;
}

.a-svg {
    height: 20px;
    width: 20px;
}

.svg-class-footer {
    color: #fff;
    height: 100%;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-content a {
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 8px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

@media (max-width: 480px) {

    .footer {
        padding: 40px 6% 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }

    .logo-footer {
        width: 160px;
        height: auto;
        min-width: 120px;
        max-width: 180px;
    }

    .icon-container-footer {
        gap: 16px;
    }

    .a-svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        font-size: 12px;
    }
}

@media (min-width: 481px) and (max-width: 900px) {

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-content > div {
        min-width: 220px;
        flex: 1;
    }

    .logo-footer {
        width: 180px;
        max-width: 200px;
    }
}

@media (min-width: 1400px) {

    .footer-content {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
    }
}


