/* ==================== Variables ==================== */
:root {
  --primary-color: #d4a5a5;
  --secondary-color: #c9a5d0;
  --accent-color: #f4e4d7;
  --dark-text: #2d2d2d;
  --light-text: #ffffff;
  --border-color: #e8d9e8;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: linear-gradient(135deg, 
    #e6d7ff 0%,      /* Light Purple start */
    #e0d0f5 25%,     /* Light Purple blend */
    #ffd6e8 50%,     /* Baby Soft Pink */
    #ffc9dd 75%,     /* Baby Soft Pink blend */
    #d6e8ff 100%     /* Baby Soft Blue */
  );
  background-attachment: fixed;
  background-size: cover;
  line-height: 1.6;
  min-height: 100vh;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

p {
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* ==================== Navbar ==================== */
.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f6 100%);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  background: linear-gradient(135deg, rgba(212, 165, 165, 0.15), rgba(201, 165, 208, 0.15));
  padding: 10px 15px;
  border-radius: 10px;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-link {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

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

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--dark-text);
  border-radius: 3px;
  transition: var(--transition);
}

/* ==================== Hero Section ==================== */
.hero {
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: #666;
  font-weight: 300;
}

.cta-button {
  width: fit-content;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(212, 165, 165, 0.3);
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 165, 165, 0.4);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 15px 30px rgba(212, 165, 165, 0.2));
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.hero-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px auto;
}

/* ==================== Section Headers ==================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header.light {
  color: white;
}

.section-title {
  font-size: 42px;
  margin-bottom: 12px;
  color: var(--dark-text);
}

.section-header.light .section-title {
  color: white;
}

.section-subtitle {
  font-size: 16px;
  color: #999;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== Services Section ==================== */
.services {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  background: linear-gradient(135deg, #fef9f6 0%, #faf8f6 100%);
}

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

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(212, 165, 165, 0.15);
}

.service-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-color), #f0e0d8);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-title {
  font-size: 20px;
  margin: 20px;
  margin-bottom: 10px;
  color: var(--dark-text);
}

.service-description {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

/* ==================== Gallery Section ==================== */
.gallery {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--accent-color), #f0e0d8);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* ==================== Contact Section ==================== */
.contact {
  background: linear-gradient(135deg, #c9a5d0 0%, #d4a5a5 100%);
  padding: 80px 40px;
}

.contact-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 32px;
  min-width: 50px;
}

.info-content h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.info-content p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== Contact Form ==================== */
.contact-form-box {
  display: flex;
  flex-direction: column;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--dark-text);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  padding: 14px 28px;
  background: white;
  color: var(--primary-color);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==================== Footer ==================== */
.footer {
  background: #2d2d2d;
  color: white;
  padding: 30px 40px;
  text-align: center;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.social-link:hover {
  border-bottom-color: var(--primary-color);
}

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    gap: 30px;
  }

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

  .services {
    padding: 50px 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    padding: 50px 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .footer-content {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .nav-container {
    padding: 12px 15px;
  }

  .nav-logo img {
    height: 40px;
  }
}
