/* ---------- Global Styles ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2E2E2E;
  background-color: #FFF8F0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: #2E2E2E;
}

h2.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Great Vibes', cursive;
  color: #B76E79;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #B76E79;
  font-family: 'Playfair Display', serif;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #2E2E2E;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #B76E79;
}

/* ---------- Hero Section ---------- */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 2rem;
  animation: fadeIn 2s ease-in-out;
}

.hero h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons .btn {
  margin: 0 0.5rem;
}

/* ---------- Buttons ---------- */
.btn, .btn-sm {
  background: #B76E79;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #D4AF37;
  box-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #B76E79;
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

/* ---------- Services ---------- */
.services {
  padding: 100px 5%;
  text-align: center;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  width: 300px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card h3 {
  color: #B76E79;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

/* ---------- About ---------- */
.about {
  padding: 100px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 1rem 0;
}

.about-img {
  width: 60%;
  border-radius: 20px;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 100px 5%;
}

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

.gallery-grid img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ---------- Bridal ---------- */
.bridal {
  background-color: #F8EBD7;
  padding: 100px 5%;
  text-align: center;
}

.bridal p {
  max-width: 800px;
  margin: 1rem auto;
}

.bridal-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

.bridal-box {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* ---------- Reviews ---------- */
.reviews {
  padding: 100px 5%;
  background: #fff;
  text-align: center;
}

.review-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.review {
  background: #FFF8F0;
  padding: 2rem;
  border-radius: 15px;
  max-width: 350px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #444;
}

/* ---------- Contact ---------- */
.contact {
  padding: 100px 5%;
  background: #fff;
  text-align: center;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}

form {
  background: #FFF8F0;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  width: 350px;
}

form input, form select, form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-family: inherit;
}

form button {
  width: 100%;
}

.contact-info {
  max-width: 350px;
  text-align: left;
}

.map iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 15px;
  margin-top: 2rem;
}

/* ---------- Footer ---------- */
.footer {
  background: #2E2E2E;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}

.footer .socials {
  margin-top: 1rem;
}

.footer a {
  color: #B76E79;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer a:hover {
  color: #D4AF37;
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .service-cards, .bridal-sections, .review-carousel, .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .about-img {
    width: 90%;
  }
}
