/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
  /* Colors */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #3b141c;
  --secondary-color: #f3961c;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;

  /* Font size */
  --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;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
    background: none;
}

img {
    width: 100%;
}

.section-content {
    max-width: var(--site-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 5;
    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);
    font-weight: var(--font-weight-semibold);
}

.navbar .nav-menu{
    display: flex; 
    gap: 10px;
}

.navbar .nav-menu .nav-link{
    padding: 10px 18px;
    color: var(--white-color);
    font-size: var(--font-size-m);
    border-radius: var(--border-radius-m);
    transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover{
    background: var(--secondary-color);
    color: var(--primary-color); 
}

.navbar :where(#menu-close-button, #menu-open-button) {
    display: none;
}

.hero-section {
    min-height: 100vh;
    background: var(--primary-color);
}

.hero-section .section-content {
    display: flex;
    align-items: center;
    min-height: 100vh;
    color: var(--white-color);
    justify-content: space-between;
}

.hero-section .hero-details .title {
    font-size: var(--font-size-xxl);
    color: var(--secondary-color);
    font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    max-width: 70%;
    margin-top: 8px;
}

.hero-section .hero-details .description {
    font-size: var(--font-size-n);
    max-width: 70%;
    margin: 24px 0 40px;
}

.hero-section .hero-details .buttons{
    display: flex;
    gap: 23px;
}

.hero-section .hero-details .button{
    padding: 10px 26px;
    border: 2px solid transparent;
    background: var(--secondary-color);
    color: var(--primary-color); 
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-m);
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .contact-us{
    background: transparent;
    color: var(--white-color);
    border-color: var(--white-color);
}

.hero-section .hero-details .contact-us:hover{
    background: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
    max-width: 500px;
    margin-right: 30px;
}

@media screen and (max-width:900px) {
    :root{
        --font-size-m: 1rem;
        --font-size-l: 1.3rem;
        --font-size-xl: 1.5rem;
        --font-size-xxl: 1.8rem;
    }

    .show-mobile-menu header::before{ 
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(5px);
        z-index: -1;
    }
    /* Common styles for menu buttons */
    .navbar :where(#menu-close-button, #menu-open-button) {
        display: block;
        font-size: var(--font-size-l);
    }

    /* Close button styling */
    .navbar #menu-close-button {
        position: absolute;
        right: 30px;
        top: 30px;
    }

    /* Open button styling */
    .navbar #menu-open-button {
        color: var(--white-color);
    }
    
    .navbar .nav-menu{
        display: block;
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: 100%;
        background: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 100px;
        transition: left 0.2s ease;
    }

    .show-mobile-menu .navbar .nav-menu{
        left: 0;
    }

    .navbar .nav-menu .nav-link{
        display: block;
        color: var(--dark-color);
        margin-top: 17px;
        font-size: var(--font-size-l);
    }

    .hero-section .section-content {
        gap: 50px;
        text-align: center;
        padding: 30px 20px 20px;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .hero-section .hero-details :is(.subtitle,.description){
        max-width: 100%;
    }

    .hero-section .hero-details .buttons{
        justify-content: center;
    }

    .hero-section .hero-image-wrapper {
        max-width: 270px;
        margin-right: 0;
    }
}

/* About Section */
.about-section {  
    min-height: calc(100vh - 40px);
    padding: 120px 0;
    background: var(--light-pink-color);
    position: relative;
} 

.about-section .section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position:absolute;
    top: 220px;
}

/* Image */
.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
}

/* Content */
.about-details {
    flex: 1;
    text-align: center;
}

.section-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    position: relative;
    margin-bottom: 20px;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}

.about-details .text {
    font-size: var(--font-size-n);
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Social Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    font-size: 18px;
    color: var(--primary-color);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--secondary-color);
}
@media (max-width: 900px) {
    .about-section .section-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image-wrapper {
        order: -1; /* image upar aa jayegi */
    }
}

/* Menu Section */
/* ================= MENU SECTION ================= */

.menu-section {
    background: #1c1c1c;
    padding: 80px 0;
    color: var(--white-color);
}

/* Title */
.menu-section .section-title {
    text-align: center;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 50px;
    position: relative;
}

.menu-section .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}

/* ================= GRID ================= */

.menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
/* ================= CARD ================= */

.menu-item {
    text-align: center;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #262626;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Hover effect */
.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* ================= IMAGE ================= */

.menu-item img {
    width: 180px;
    height: 180px;
    object-fit: contain;   /* no cut */
    margin-bottom: 20px;
    transition: 0.3s ease;
}

/* Image hover zoom */
.menu-item:hover img {
    transform: scale(1.08);
}

/* ================= TEXT ================= */

.menu-item h3 {
    font-size: var(--font-size-l);
    margin-bottom: 10px;
}

.menu-item p {
    font-size: var(--font-size-n);
    color: var(--medium-gray-color);
    line-height: 1.5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
    .menu-section {
        padding: 60px 0;
    }

    .menu-item img {
        width: 150px;
        height: 150px;
    }
    .menu-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .menu-section {
        padding: 50px 0;
    }

    .menu-item {
        padding: 20px;
    }

    .menu-item img {
        width: 130px;
        height: 130px;
    }

    .menu-list {
        grid-template-columns: 1fr;
    }
} 


.review {
    padding: 80px 0;
    text-align: center;
    background: var(--light-pink-color);
}
.review {
    min-height: calc(100vh - 40px); /* full screen minus navbar */
    padding-top: 100px;
}

.review .heading {
    /* font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: 40px; */
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    position: relative;
    margin-bottom: 40px;
}

.review .heading::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}
.review-slider {
    padding: 40px 0;
}

.review .box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    text-align: center;
}

/* Quotes */
.review .box .fa-quote-left {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 40px;
    color: #ccc;
}

.review .box .fa-quote-right {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 40px;
    color: #ccc;
}

/* Image */
.review .box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 10px 0;
}

/* Stars */
.review .stars {
    color: var(--secondary-color);
    margin: 10px 0;
}

/* Text */
.review .box p {
    font-size: 14px;
    margin: 10px 0;
}

.review .box h3 {
    margin-top: 10px;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #ccc;
}

.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}
/* Card animation */
.review .box {
    transition: all 0.4s ease;
}

/* Hover effect */
.review .box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
/* All slides */
.swiper-slide {
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

/* Active center */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}
/* Default slides */
.swiper-slide {
    opacity: 1;
    transform: scale(0.85);
    transition: all 0.4s ease;
}

/* Active (center) */
.swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
}

/* Section */
.gallery-section {
    padding: 80px 20px;
    background: var(--light-pink-color);
    text-align: center;
}

/* Title */
.section-title {
    font-size: var(--font-size-xl);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}

/* Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* Item */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Tablet */
@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 200px;
    }
}

/* Section */
.contact-section {
    padding: 80px 20px;
    background: var(--light-pink-color);
}

/* Title */
.section-title {
    text-align: center;
    font-size: var(--font-size-xl);
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}

/* Layout */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

/* Left info */
.contact-info {
    flex: 1;
    font-size: var(--font-size-n);
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 15px;
}

/* Form */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: var(--font-size-n);
    outline: none;
}

/* Focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--secondary-color);
}

/* Button */
.contact-form button {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s;
    width: 150px;
}

.contact-form button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.error {
    color: red;
    font-size: 12px;
    text-align: left;
    display: block;
}

.input-error {
    border: 1px solid red !important;
}

.input-success {
    border: 1px solid green !important;
}

@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        text-align: center;
    }
}

.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-top: 2px solid var(--secondary-color);
}

/* Text */
.footer p {
    font-size: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
}

.social-icons a {
    font-size: 20px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: translateY(-3px) scale(1.1);
}

/* Links */
.footer-links {
    font-size: 14px;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Divider dot */
.footer-links span {
    opacity: 0.5;
}