/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #333;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.hero-glass {
  position: relative;
}

.hero-glass::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(
    circle at center,
    rgba(247, 200, 176, 0.25) 0%,
    rgba(247, 200, 176, 0) 70%
  );
  z-index: -1;
}

body {
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* NAVIGATION */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 1rem 0;
  z-index: 1000;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
}

.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Background image + gradient overlay */
  background: 
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(253, 232, 223, 0.85) 50%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    url("assets/images/hero/dfchero.png");

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



  /* Background image + gradient overlay */
  background: 
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(253, 232, 223, 0.85) 50%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    url("assets/images/hero/dfchero.png");

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

.hero-glass {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  padding: 3rem 4rem;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.btn-primary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 2rem;
  background: #f7c8b0;
  color: #1a1a1a;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #f5b89c;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  font-size: 2rem;
  opacity: 0.5;
  animation: bounce 2s infinite;
}

/* SECTIONS */
.section {
  padding: 8rem 0;
}

.container {
  width: 90%;
  margin: auto;
}

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

/* GLASS CARDS */
.glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-align: center;
}

.highlight {
  border: 2px solid #f7c8b0;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
/* ABOUT SECTION */
.about-container {
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: #f7c8b0;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.about-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  object-fit: cover;
}

.about-final {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
}
#about {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #fff5ef 100%
  );
}
/* SERVICES SECTION */
.services-container {
  max-width: 1100px;
  margin: auto;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  object-fit: cover;
}

.service-text {
  flex: 1;
}

.service-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.service-text p {
  line-height: 1.6;
  font-size: 1.05rem;
}
#services {
  background: #ffffff;
}
#gallery {
  padding-top: 6rem;
}
#gallery {
  background: linear-gradient(
    180deg,
    #fff5ef 0%,
    #ffffff 100%
  );
  padding-top: 6rem;
  padding-bottom: 6rem;
}

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

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  user-select: none;
}
.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.map-container {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
/* CONTACT SECTION PEACH GRADIENT */
.contact-peach {
  background: linear-gradient(
    180deg,
    #fff5ef 0%,
    #f7c8b0 100%
  );
}

/* MAP SECTION GRADIENT */
.map-peach {
  background: linear-gradient(
    180deg,
    #f7c8b0 0%,
    #ffffff 100%
  );
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

/* CONTACT INFO */
.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
  text-align: left;
}

/* ICONS */
.icon {
  font-size: 1.3rem;
  margin-right: 0.4rem;
}

/* CONTACT FORM */
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

/* CONTACT LINKS */
.contact-link {
  color: #f7a98a;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* MAP CONTAINER */
.map-container {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 2rem 0;
  background: #1a1a1a;
  color: white;
  font-size: 0.95rem;
  margin-top: 4rem;
}

.site-footer span {
  color: #f7c8b0;
}
/* PEACH BACKGROUND */
.contact-peach {
  background: linear-gradient(
    180deg,
    #fff5ef 0%,
    #f7c8b0 100%
  );
}

/* HORIZONTAL LAYOUT */
.contact-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* ICONS */
.icon {
  font-size: 1.3rem;
  margin-right: 0.4rem;
}

/* CONTACT LINKS */
.contact-link {
  color: #f7a98a;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* MAP CARD */
.contact-map iframe {
  border-radius: 14px;
  width: 100%;
}

/* FORM INPUTS */
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 1rem;
}
/* PEACH BACKGROUND FOR CONTACT SECTION */
.contact-peach {
  background: linear-gradient(
    180deg,
    #fff5ef 0%,
    #f7c8b0 100%
  );
}

/* TWO-COLUMN LAYOUT (same as v1) */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: auto;
}

/* CONTACT FORM INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* CONTACT LINK */
.contact-link {
  color: #f7a98a;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* MAP CONTAINER */
.map-container {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
/* Spacing between contact items */
.contact-item {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Icons */
.icon {
  font-size: 1.3rem;
  margin-right: 0.4rem;
}

/* Facebook link styling */
.contact-link {
  color: #f7a98a;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}
/* HEADER LOGO */
.dfc-logo img {
  height: 70px;       /* Bigger, bolder logo */
  width: auto;
  object-fit: contain;
  display: block;
}

/* NAV CONTAINER ALIGNMENT */
.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* NAV LINKS */
.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
}

/* MOBILE RESPONSIVE LOGO */
@media (max-width: 768px) {
  .dfc-logo img {
    height: 55px;
  }
}

/* ===========================
   MOBILE LAYOUT (max 768px)
   =========================== */
@media (max-width: 768px) {

}
@media (max-width: 768px) {

  /* ABOUT SECTION — MOBILE */
  .about-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .about-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-text {
    text-align: left;
    padding: 0;
  }

  .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {

  /* ABOUT SECTION — MOBILE */
  .about-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-text {
    padding: 0;
  }

  .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Optional: improve spacing for the whole section */
  .about-container {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 768px) {

  /* ABOUT SECTION — ALL ROWS */
  .about-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-row .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-row .about-text {
    padding: 0;
  }

  .about-row .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .about-row .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {

  /* ABOUT SECTION — FORCE ALL ROWS TO STACK */
  .about-row,
  .about-row.reverse {
    display: flex;
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .about-row .about-image img,
  .about-row.reverse .about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .about-row .about-text,
  .about-row.reverse .about-text {
    padding: 0;
  }

  .about-row .about-text h3,
  .about-row.reverse .about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .about-row .about-text p,
  .about-row.reverse .about-text p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {

  /* ABOUT — FORCE TEXT FIRST, PHOTO SECOND ON MOBILE */

  .about-row {
    display: flex;
    flex-direction: column;
  }

  /* Text always first */
  .about-row .about-text {
    order: 1;
  }

  /* Photo always second */
  .about-row .about-image {
    order: 2;
  }
}
/* ===========================
   SERVICES — MOBILE LAYOUT
   =========================== */
@media (max-width: 768px) {

  /* Force all service rows to stack vertically */
  .service-row,
  .service-row.reverse {
    display: flex;
    flex-direction: column !important;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  /* Text always first, photo always second */
  .service-row .service-text,
  .service-row.reverse .service-text {
    order: 1;
  }

  .service-row .service-image,
  .service-row.reverse .service-image {
    order: 2;
  }

  /* Make images full-width and clean */
  .service-row .service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Improve readability */
  .service-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .service-text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  /* Optional: reduce container padding for a modern mobile feel */
  .services-container {
    padding: 0 1rem;
  }
}
/* ===========================
   GALLERY — MOBILE
   =========================== */

/* Show only first 6 images */
.gallery-grid img:nth-of-type(n+7) {
  display: none;
}

/* When expanded, show all */
.gallery-grid.show-all img {
  display: block;
}

/* Mobile grid layout */
.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 0 1rem;
}

/* View More button */
.gallery-toggle {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.5rem;
  background: #ffbfae;
  color: #000;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  width: fit-content;
  border: none;
}

/* ===========================
   FLOATING BUTTONS
   =========================== */

.floating-btn {
  position: fixed;
  bottom: 20px;
  padding: 0.75rem 1rem;
  background: #ffbfae;
  color: #000;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 999;
}

/* Contact button (right) */
.floating-contact {
  right: 20px;
}

/* Home button (left) */
.floating-home {
  left: 20px;
}
.gallery-toggle {
  margin-top: 1.5rem;   /* lifts the button upward */
  margin-bottom: 2rem;  /* keeps safe distance from floating buttons */
}
/* ===========================
   CONTACT — MOBILE LAYOUT
   =========================== */

.contact-peach {
  padding: 2rem 1.25rem;
}

/* Stack columns vertically */
.two-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Improve spacing for contact items */
.contact-item {
  margin-bottom: 1.25rem;
  line-height: 1.5;
  font-size: 1rem;
}

/* Icons slightly larger and aligned */
.contact-item .icon {
  font-size: 1.2rem;
  margin-right: 0.25rem;
}

/* Make form full-width and clean */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

/* Submit button spacing */
.contact-form .btn-primary {
  margin-top: 0.5rem;
  padding: 0.9rem;
  font-size: 1.05rem;
  border-radius: 8px;
}
/* ===========================
   CONTACT — DESKTOP (DEFAULT)
   =========================== */

.contact-peach {
  background: linear-gradient(
    180deg,
    #fff5ef 0%,
    #f7c8b0 100%
  );
  padding: 4rem 0;
}

/* Desktop: 2 columns */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: auto;
}

/* Contact items */
.contact-item {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.icon {
  font-size: 1.3rem;
  margin-right: 0.4rem;
}

/* Form inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Contact link */
.contact-link {
  color: #f7a98a;
  font-weight: 600;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ===========================
   CONTACT — MOBILE (max 768px)
   =========================== */

@media (max-width: 768px) {

  .contact-peach {
    padding: 2rem 1.25rem;
  }

  /* Mobile: stack into 1 column */
  .two-column {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-item {
    margin-bottom: 1.25rem;
    font-size: 1rem;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }
}
.thankyou-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #fde8df 50%, #fff 100%);
}

.thankyou-container {
  text-align: center;
  max-width: 400px;
  padding: 40px;
}

.thankyou-container h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.thankyou-container p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

