@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Dancing Script", cursive;
}

:root {
    /* Colors */
    --white-color: #fff;
    --dark-color: #252525;
    --primary-color: #3b141c;
    --secondary-color: #f3961c;
    --light-pink-color: #faf4f5;
    --medium-gray-color: #ccc;

    /* Font Sizes (Corrected from 'front' to 'font') */
    --font-size-s: 0.9rem;
    --font-size-n: 1rem;
    --font-size-m: 1.12rem;
    --font-size-l: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.3rem;

    /* Weights & Radius */
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --border-radius-s: 8px;
    --border-radius-m: 30px;
    --border-radius-circle: 50%;
    --site-max-width: 1300px;
}

html { scroll-behavior: smooth; }
ul { list-style-type: none; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
img { width: 100%; display: block; }

.section-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: var(--site-max-width);
}

.section-title {
    text-align: center;
    padding: 60px 0 30px;
    text-transform: uppercase;
    font-size: var(--font-size-xl);
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    display: block;
    margin: 10px auto 0;
    border-radius: var(--border-radius-s);
    background: var(--secondary-color);
}

/* --- Header & Navbar --- */
header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: var(--primary-color);
}

header .navbar {
    display: flex;
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.navbar .nav-logo .logo-text {
    color: var(--white-color);
    font-size: var(--font-size-xl);
}

.navbar .nav-menu { display: flex; gap: 10px; }
.navbar .nav-menu .nav-link { 
    padding: 10px 18px; color: var(--white-color); border-radius: var(--border-radius-m); transition: 0.3s ease; 
}
.navbar .nav-menu .nav-link:hover { color: var(--primary-color); background: var(--secondary-color); }
.navbar :where(#menu-close-button, #menu-open-button) { display: none; }

/* --- Hero Section --- */
.hero-section { min-height: 100vh; background: var(--primary-color); display: flex; align-items: center; }
.hero-section .section-content { display: flex; align-items: center; color: var(--white-color); justify-content: space-between; width: 100%; }
.hero-section .hero-details .title { font-size: var(--font-size-xxl); color: var(--secondary-color); }
.hero-section .hero-details .buttons { display: flex; gap: 23px; margin-top: 30px; }
.hero-section .hero-details .button { 
    padding: 10px 26px; border-radius: var(--border-radius-m); background: var(--secondary-color); 
    color: var(--primary-color); font-weight: bold; transition: 0.3s ease; border: 2px solid transparent;
}
.hero-section .hero-details .button:hover { background: transparent; color: white; border-color: white; }
.hero-section .hero-image-wrapper { max-width: 500px; }

/* --- About Us Section --- */
.about-section { padding: 100px 0; background: var(--light-pink-color); }
.about-section .section-content { display: flex; gap: 50px; align-items: center; }
.about-section .about-image { border-radius: 50%; width: 400px; height: 400px; object-fit: cover; }
.about-section .about-details { max-width: 55%; }
.about-section .about-details .text { line-height: 1.8; font-size: var(--font-size-m); margin: 30px 0; text-align: left; }
.about-section .social-link-list { display: flex; gap: 20px; }
.about-section .social-link { color: var(--primary-color); font-size: var(--font-size-l); transition: 0.3s; }
.about-section .social-link:hover { color: var(--secondary-color); }

/* --- Menu Section --- */
.menu-section { color: var(--white-color); background: var(--dark-color); padding: 80px 0; }
.menu-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; }
.menu-item { text-align: center; }
.menu-image { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 15px; object-fit: cover; border: 3px solid var(--secondary-color); }

/* --- Testimonials Section (SLIDER & BUTTON FIX) --- */
.testimonials-section { padding: 80px 0; background: var(--light-pink-color); }
.slider-container { position: relative; width: 100%; }
.slider-wrapper { overflow: hidden; position: relative; padding: 20px 0 60px; margin: 0 50px; }

.testimonial { text-align: center; display: flex; flex-direction: column; align-items: center; }
.testimonial .user-image { width: 140px; height: 140px; border-radius: 50%; margin-bottom: 20px; object-fit: cover; }
.testimonials-swiper {
    position: relative;
    padding: 20px 0 60px;
    overflow: hidden;
}

/* Ensure the arrows are above everything else */
.swiper-button-prev,
.swiper-button-next {
    z-index: 99;
    cursor: pointer;
    pointer-events: auto !important; /* Forces the browser to allow clicks */
}

/* Optional: Make the grab cursor obvious on desktop */
.swiper-slide {
    cursor: grab;
}
.swiper-slide:active {
    cursor: grabbing;
}

/* Swiper Navigation Button Styles */
.swiper-button-prev, .swiper-button-next {
    color: var(--secondary-color) !important; /* Forces your orange color */
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

.swiper-pagination-bullet-active {
    background: var(--secondary-color) !important;
}

/* --- Gallery Section --- */
.gallery-section { padding: 80px 0; }
.gallery-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.gallery-item { overflow: hidden; border-radius: var(--border-radius-s); aspect-ratio: 1/1; }
.gallery-image { height: 100%; width: 100%; object-fit: cover; transition: 0.4s; cursor: zoom-in; }
.gallery-item:hover .gallery-image { transform: scale(1.1); }

/* --- Contact Section --- */
.contact-section { padding: 80px 0; background: var(--light-pink-color); }
.contact-section .section-content { display: flex; gap: 50px; justify-content: space-between; }
.contact-info-list { flex: 1; }
.contact-info { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-info i { width: 30px; text-align: center; color: var(--secondary-color); font-size: 1.2rem; }

.contact-form { flex: 1; max-width: 500px; }
.form-input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid var(--medium-gray-color); border-radius: var(--border-radius-s); outline: none; }
.form-input:focus { border-color: var(--secondary-color); }
.submit-button { background: var(--primary-color); color: white; padding: 10px 30px; border-radius: var(--border-radius-m); transition: 0.3s; }
.submit-button:hover { background: var(--secondary-color); color: var(--primary-color); }

/* --- Footer --- */
.footer-section { background: var(--dark-color); color: white; padding: 30px 0; }
.footer-section .section-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-section .social-link { color: white; margin-left: 15px; font-size: 1.3rem; transition: 0.3s; }
.footer-section .social-link:hover { color: var(--secondary-color); }

/* --- Responsive Media Queries --- */
@media screen and (max-width: 900px) {
    .navbar :where(#menu-close-button, #menu-open-button) { display: block; color: white; }
    .navbar .nav-menu {
        position: fixed; left: -300px; top: 0; width: 280px; height: 100%;
        background: var(--white-color); flex-direction: column; padding-top: 100px; transition: 0.3s ease;
    }
    body.show-mobile-menu .nav-menu { left: 0; }
    .navbar .nav-link { color: var(--dark-color); }
    .hero-section .section-content, .about-section .section-content, .contact-section .section-content { flex-direction: column; text-align: center; }
    .about-section .about-image { width: 250px; height: 250px; }
    .about-details { max-width: 100%; }
    .contact-form { max-width: 100%; }
    .swiper-button-prev, .swiper-button-next { display: none; } /* Hides buttons on mobile for more space */
}