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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #2b2b2b;
  background-color: #ffffff;
  line-height: 1.6;
}

/* =========================================================
   Utilities
========================================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1f1f1f;
}

.section-header p {
  color: #6b6b6b;
  font-size: 1rem;
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: #c48b9f;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #b1778c;
}

.btn-outline {
  border: 1px solid #c48b9f;
  color: #c48b9f;
  background: transparent;
}

.btn-outline:hover {
  background-color: #c48b9f;
  color: #ffffff;
}

/* =========================================================
   Header / Navbar
========================================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  z-index: 1000;
}

.header-container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.navigation a {
  margin-left: 26px;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 0.95rem;
  font-weight: 500;
}

.navigation a:hover {
  color: #c48b9f;
}

/* =========================================================
   Hero Section – PREMIUM FINAL VERSION
========================================================= */
.hero {
  min-height: 90vh;
  padding-top: 90px;

  background-image:
    linear-gradient(
      to right,
      rgba(255, 255, 255, 0.65),
      rgba(255, 255, 255, 0.35)
    ),
    url("hero_image.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 620px;
  text-align: left;
  background: rgba(255, 255, 255, 0.65);
  padding: 40px;
  border-radius: 16px;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 18px;
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 35px;
}

.hero-actions {
  display: flex;
  gap: 16px;
}

/* =========================================================
   Services Section
========================================================= */
.services {
  padding: 110px 0;
  background-color: #faf7f8;
}

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

.service-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.service-card p {
  color: #6b6b6b;
  font-size: 0.95rem;
}

/* =========================================================
   Why Choose Us
========================================================= */
.why-us {
  padding: 110px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 40px 32px;
  border: 1px solid #f0e4e8;
  border-radius: 14px;
  background-color: #fff;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.why-card p {
  color: #6b6b6b;
  font-size: 0.95rem;
}

/* =========================================================
   Portfolio / Gallery
========================================================= */
.portfolio {
  padding: 110px 0;
  background-color: #faf7f8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.portfolio-item {
  text-align: center;
}

.portfolio-item img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
}

.portfolio-item figcaption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #444;
}

/* =========================================================
   About Section
========================================================= */
.about {
  padding: 110px 0;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 360px;
  border-radius: 16px;
  object-fit: cover;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

/* =========================================================
   Contact Section
========================================================= */
.contact {
  padding: 110px 0;
  background-color: #faf7f8;
}

.contact-box {
  max-width: 540px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 42px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: center;
}

.contact-box p {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.contact-actions {
  margin-top: 28px;
}

.contact-actions .btn {
  margin: 0 10px;
}

/* =========================================================
   Footer
========================================================= */
.footer {
  background-color: #1f1f1f;
  color: #dcdcdc;
  padding: 42px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* =========================================================
   Responsive (Mobile)
========================================================= */
@media (max-width: 768px) {
  .navigation {
    display: none;
  }

  .hero {
    background-position: center;
  }

  .hero-content {
    text-align: center;
    padding: 30px 22px;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
  }
}
