/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@400;600&display=swap');

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fdf6e3;
    color: #333;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* Header */
header {

    color: rgb(225, 225, 225);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Slider */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.btn {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #fff9f0 0%, #fff0e0 100%);
    text-align: center;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color:burlywood;
}

.services h2 span {
    color: #d4af37;
    font-style: italic;
}

.section-subtitle {
    color: burlywood;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #f0e6d2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(178, 34, 34, 0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon .icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.floating-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #B22222;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.service-card h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.service-features {
    text-align: left;
    margin-bottom: 2rem;
    list-style: none;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: #555;
}

.service-features i {
    color: #D4AF37;
    margin-right: 0.5rem;
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-badge {
    background: #d4af37;
    color: #B22222;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.special-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #D4AF37;
    color: #B22222;
    padding: 0.3rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.service-usp {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.usp-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 180px;
}

.usp-card i {
    font-size: 2rem;
    color: #B22222;
    margin-bottom: 1rem;
}

.usp-card p {
    font-weight: 600;
    color: #333;
}

/*about us */
.about-us {
    padding: 5rem 5%;
  background: #ffffff;
    text-align: center;
    position: relative;
}

.about-us .container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-us h2 {
    font-family: 'Playfair Display', serif;
    color: brown;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-us h2:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: #D4AF37;
    bottom: -10px;
    left: 25%;
}

.about-us h3 {
    color: #B22222;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-us ul {
    text-align: center;
    display: inline-block;
    margin: 2rem auto;
    columns: 2;
    column-gap: 3rem;
}

.about-us li {
    margin: 0.8rem 0;
    font-size: 1.05rem;
    list-style: none;
    position: relative;
    padding-left: 1.8rem;
    text-align: left;
    color: #333;
}

.about-us li:before {
    content: "✓";
    color: #D4AF37;
    font-weight: bold;
    position: absolute;
    left: 0;
}



/* Gallery */

.gallery {
    padding: 4rem 2rem;
    text-align: center;
    /* Light warm background */
}

.gallery h2 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
  
    margin-bottom: 1.5rem;
}

.gallery-filters {
    margin-bottom: 2rem;
}
.gallery-item.hidden {
    display: none;
}
.filter-btn {
    background: transparent;
    border: 1px solid #d4af37;
    color: #333;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #b38f2a;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}


/* Button Styles */
#show-more-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}
.button-wrapper{
    text-align: center;
    margin-top: 2rem;
}
#show-more-btn {
    margin:0 auto;
    cursor: pointer;
}

#show-more-btn:hover {
    background: #b38f2a;
    /* Darker gold */
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    background: #fff9f0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 1.8rem;
    color: brown;
    min-width: 40px;
}

.contact-method a {
    color: brown;
    text-decoration: none;
    font-weight: 600;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    background: brown;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
footer {
   
    color: brown;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-us ul {
        columns: 1;
    }

    .about-us h2 {
        font-size: 2rem;
    }

    .about-us h3 {
        font-size: 1.3rem;
    }
}
/* ========================================
   📱 Extra Responsive Design Layer
   ======================================== */

/* ========================================
   📱 Responsive & Visual Enhancements
   ======================================== */

/* For tablets and below (≤768px) */
@media (max-width: 768px) {

    /* ==== HEADER FIX ==== */
    header {
        position: relative;
        background: #8B0000; /* deep maroon - richer and less transparent */
        z-index: 1000;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        background: #a52a2a; /* warm brown-red */
        border-radius: 10px;
        padding: 1rem 0;
        margin-top: 1rem;
        text-align: center;
        gap: 0.75rem;
    }

    nav ul li a {
        color: #fff !important;
        font-weight: 500;
        font-size: 1rem;
        transition: color 0.3s ease;
    }

    nav ul li a:hover {
        color: #f5d77a; /* gold hover */
    }

    /* ==== HERO SECTION ==== */
    .hero {
        position: relative;
        margin-top: 80px; /* prevents overlap with header */
        height: 75vh;
    }

    .slide-content {
        background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
        border-radius: 15px;
        padding: 1.2rem;
        width: 90%;
        margin: 0 auto;
        color: #fff;
        text-align: center;
    }

    .slide-content h2 {
        font-size: 1.6rem;
        color: #f5d77a; /* gold accent */
    }

    .slide-content p {
        font-size: 1rem;
    }

    .btn {
        background: #d4a017; /* rich gold button */
        color: #fff;
        padding: 0.7rem 1.4rem;
        font-size: 1rem;
        border-radius: 6px;
        transition: background 0.3s;
    }

    .btn:hover {
        background: #b98c0b;
    }

    /* ==== SECTIONS ==== */
    .services, .about-us, .gallery, .contact {
        padding: 3rem 2rem;
    }

    .services h2,
    .about-us h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
        color: #8B0000;
        margin-bottom: 1rem;
    }

    .service-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .gallery-item img {
        height: 180px;
        border-radius: 10px;
        object-fit: cover;
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
    }

    footer {
        background: #8B0000;
        color: #fff;
        padding: 1.2rem;
        text-align: center;
        font-size: 0.9rem;
    }
}

/* For small phones (≤480px) */
@media (max-width: 480px) {
    header {
        text-align: center;
        align-items: center;
    }

    nav ul {
        align-items: center;
    }

    .slide-content h2 {
        font-size: 1.3rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .about-us h2 {
        font-size: 1.8rem;
    }

    .about-us p {
        font-size: 1rem;
    }

    footer {
        font-size: 0.85rem;
    }
}
/* Header Styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #800000;
  padding: 15px 50px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  margin: 0;
}

/* Navigation for desktop */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffeb3b;
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #800000;
    width: 200px;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}
/* HEADER BASE */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
 header.scrolled {
  background: transparent;
}

  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

header .logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  margin: 0;
}

/* DESKTOP NAVIGATION */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700; /* gold highlight */
}

/* MENU TOGGLE ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffd700; /* gold icon */
  transition: color 0.3s;
}

.menu-toggle:hover {
  color: #fff;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px; /* show on right */
    background-color: #800000;
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 30px;
    top: 22px;
  }

  nav {
    width: 100%;
    text-align: right;
  }
}
/* ======= HEADER BASE ======= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent; /* transparent header */
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

/* When user scrolls down, add maroon tint */
header.scrolled {
  background: rgba(128, 0, 0, 0.9);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* ======= LOGO ======= */
header .logo h1 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #ffd700; /* golden text */
  margin: 0;
}

/* ======= DESKTOP NAVIGATION ======= */
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #ffd700; /* gold hover */
}

/* ======= MENU TOGGLE ICON ======= */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #ffd700; /* gold icon */
  transition: color 0.3s ease;
  background: transparent; /* transparent background */
  border: none;
  outline: none;
  position: absolute;
  right: 30px; /* align to right side */
  top: 18px;
}

.menu-toggle:hover {
  color: #fff;
}

/* ======= MOBILE MENU ======= */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
  
    width: 220px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: none;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  nav ul li a {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
  }

  nav ul li a:hover {
    color: white;
  }
}



