/* assets/css/style.css */
/* ----- RESET & GLOBAL ----- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Segoe UI",
    Roboto,
    system-ui,
    -apple-system,
    sans-serif;
}

body {
  background: #e8e6e1;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

/* main responsive container — desktop: 1280px width, mobile: fluid */
.site-container {
  width: 100%;
  max-width: 1280px; /* desktop max */
  margin: 0 auto;
  background-color: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ----- TOP BAR (address / phone) ----- */
.top-bar {
  background-color: #1e2a37;
  color: #fff;
  padding: 0.7rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  border-bottom: 3px solid #c9a355;
}
.top-address i,
.top-phones i {
  color: #c9a355;
  margin-right: 6px;
}
.top-phones a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}
.top-phones a:hover {
  color: #c9a355;
}

/* ----- NAVBAR (logo + dropdowns) ----- */
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: white;
  border-bottom: 1px solid #ddd;
}
.logo h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e2a37;
  line-height: 1.1;
}
.logo span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: #c9a355;
  text-transform: uppercase;
}

.dropdown-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.dropdown {
  position: relative;
}
.dropbtn {
  background: #f4f2ef;
  border: none;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid #d6cfc4;
  transition: 0.2s;
}
.dropbtn i {
  color: #c9a355;
}
.dropbtn:hover {
  background: #e9e1d5;
}
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 220px;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  top: 120%;
  z-index: 99;
  right: 0;
  border: 1px solid #eee;
}
.dropdown-content a {
  color: #1e2a37;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f3f0ea;
  font-weight: 500;
}
.dropdown-content a:last-child {
  border-bottom: none;
}
.dropdown-content a:hover {
  background: #faf1e2;
  color: #b8862c;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* ----- HERO BANNER ----- */
.hero {
  /* background-image:
     url("https: //content.jdmagicbox.com/comp/dehradun/c6/9999px135.x135.230901212431.b7c6/catalogue/dream-formation-architecture-dharampur-dehradun-architects-32wk124nnq.jpg"); */
  background-blend-mode: overlay;
  background-size: cover;
  height: 50vh;
  background-position: center 30%;
  padding: 5rem 2rem;
  text-align: center;
  color: white;
}
.hero h2 {
  font-size: clamp(2rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 1px;
}
.hero h2 span {
  display: block;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 300;
  color: #c9a355;
  letter-spacing: 6px;
}
.hero p {
  background: rgba(0, 0, 0, 0.4);
  display: inline-block;
  padding: 0.7rem 2rem;
  border-radius: 60px;
  border: 1px solid #c9a355;
  font-size: 1.2rem;
  margin-top: 2rem;
  backdrop-filter: blur(4px);
}

/* ----- VALUES (cards) ----- */
.values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  background: #faf9f7;
  padding: 3rem 2rem;
}
.value-card {
  background: white;
  flex: 1 1 180px;
  min-width: 170px;
  max-width: 250px;
  padding: 2rem 1.2rem;
  border-radius: 28px;
  text-align: center;
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.08);
  transition: 0.15s;
}
.value-card i {
  font-size: 2.8rem;
  color: #c9a355;
  margin-bottom: 1rem;
}
.value-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e2a37;
}
.value-card p {
  color: #4f5a64;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

/* ----- DIRECTOR + ABOUT (flex for desktop) ----- */
.about-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 2rem;
  background: white;
}
.director-col {
  flex: 1.2;
  min-width: 280px;
}
.image-col {
  flex: 0.9;
  min-width: 250px;
}
.director-card {
  background: #f5f2eb;
  padding: 2rem;
  border-radius: 30px;
  border-left: 8px solid #c9a355;
}
.director-card h5 {
  color: #2d3a47;
  font-size: 1rem;
  letter-spacing: 1.5px;
}
.director-card h3 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #1e2a37;
  margin: 0.5rem 0 1rem;
}
.style-tagline {
  font-size: 2rem;
  font-weight: 300;
  margin: 1.5rem 0 1rem;
}
.style-tagline strong {
  color: #c9a355;
  font-weight: 600;
}
.image-col img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 30px -8px rgba(0, 0, 0, 0.2);
}
.lifestyle-text {
  margin-top: 1.8rem;
  line-height: 1.7;
  color: #2a3846;
}

/* ----- STATS (counters) ----- */
.stats-block {
  display: flex;
  flex-wrap: wrap;
  background: #1e2a37;
  color: white;
  justify-content: space-around;
  padding: 2.5rem 1rem;
  text-align: center;
}
.stat {
  flex: 1 1 140px;
  margin: 0.5rem;
}
.stat .big-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #c9a355;
  line-height: 1;
}

/* ----- NIGHT VIEW + SPECS (desktop side by side) ----- */
.night-specs {
  display: flex;
  flex-wrap: wrap;
  background: #f3f1ed;
}
.night-col {
  flex: 1 1 350px;
}
.spec-col {
  flex: 1.4 1 450px;
  padding: 2rem 2rem 2rem 1rem;
}
.night-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.night-caption {
  background: #1e2a37;
  color: #ddd;
  padding: 1rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1px;
}
.specs-panel h3 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #1e2a37;
  border-bottom: 4px solid #c9a355;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.8rem 1.5rem;
}
.spec-item {
  display: flex;
  border-bottom: 1px dashed #b9ad9a;
  padding: 0.8rem 0;
  font-size: 0.95rem;
}
.spec-title {
  width: 38%;
  font-weight: 700;
  color: #3e3020;
}
.spec-desc {
  width: 62%;
  color: #2d3a47;
}

/* ----- TESTIMONIALS (grid) ----- */
.testimonials-section {
  padding: 3rem 2rem;
  background: white;
}
.testimonials-section h2 {
  font-size: 2.5rem;
  border-left: 8px solid #c9a355;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.8rem;
}
.testi-card {
  background: #f9f6f0;
  padding: 1.8rem;
  border-radius: 32px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}
.testi-card p {
  font-style: italic;
  color: #2e3b48;
}
.testi-card h5 {
  color: #c9a355;
  font-weight: 700;
  margin-top: 1rem;
}
.testi-card span {
  font-size: 0.8rem;
  color: #7b8a99;
}

/* ----- FOOTER ----- */
.footer {
  background: #1e2a37;
  padding: 2.5rem 2rem 2rem;
  color: #ccd5dd;
  border-top: 4px solid #c9a355;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left .brand {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}
.footer-address i {
  width: 24px;
  color: #c9a355;
}
.footer .copyright {
  text-align: center;
  margin-top: 2.5rem;
  color: #8b99a8;
  font-size: 0.9rem;
}
.sticky-call {
  display: none; /* desktop no need; will appear on mobile via media query */
}

/* ----- PROJECT PAGE SPECIFIC STYLES ----- */
.project-hero {
  background: linear-gradient(105deg, #10212e, #1b2b39);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.project-hero h1 {
  font-size: 3rem;
  color: #c9a355;
}
.project-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.project-details {
  padding: 3rem 2rem;
  background: white;
}
.project-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.spec-box {
  background: #f5f2eb;
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid #c9a355;
}
.spec-box h3 {
  color: #1e2a37;
  margin-bottom: 1rem;
}
.spec-box ul {
  list-style: none;
}
.spec-box ul li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #b9ad9a;
}
.spec-box ul li:last-child {
  border-bottom: none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-item img {
  width: 100%;
  border-radius: 15px;
  height: 200px;
  object-fit: cover;
}
.contact-project {
  background: #f3f1ed;
  padding: 3rem 2rem;
  text-align: center;
}
.contact-btn {
  background: #c9a355;
  color: #1e2a37;
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  margin-top: 1rem;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

/* ----- MOBILE RESPONSIVE (max-width: 768px) ----- */
@media screen and (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    gap: 8px;
    padding: 0.8rem 1rem;
  }
  .top-phones a {
    margin-left: 10px;
  }
  .navbar {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    padding: 1rem;
  }
  .dropdown-group {
    justify-content: space-between;
  }
  .dropdown {
    width: 48%;
  }
  .dropbtn {
    width: 100%;
    justify-content: center;
    padding: 10px 10px;
    font-size: 0.9rem;
  }
  .dropdown-content {
    min-width: 180px;
    right: auto;
    left: 0;
  }

  .hero {
    padding: 3rem 1rem;
  }
  .values-row {
    padding: 2rem 1rem;
    gap: 1rem;
  }
  .value-card {
    min-width: 140px;
    padding: 1.5rem 0.8rem;
  }
  .about-flex {
    flex-direction: column;
    padding: 2rem 1rem;
  }
  .director-card h3 {
    font-size: 1.8rem;
  }
  .style-tagline {
    font-size: 1.6rem;
  }
  .night-specs {
    flex-direction: column;
  }
  .spec-col {
    padding: 2rem 1rem;
  }
  .specs-panel h3 {
    font-size: 2.2rem;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section {
    padding: 2rem 1rem;
  }
  .footer-flex {
    flex-direction: column;
    gap: 1rem;
  }
  /* sticky call button for mobile */
  .sticky-call {
    display: block;
    position: sticky;
    bottom: 15px;
    text-align: center;
    margin-top: 10px;
    z-index: 20;
  }
  .call-btn {
    background: #c9a355;
    color: #1e2a37;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
    display: inline-block;
    border: 2px solid white;
  }

  .project-hero h1 {
    font-size: 2rem;
  }
  .project-specs {
    grid-template-columns: 1fr;
  }
}

/* desktop fine-tuning */
@media screen and (min-width: 1200px) {
  .hero h2 {
    font-size: 4.5rem;
  }
}

/* Additional Styles for Silver Oak Project Page */

/* Featured Project Section */
.featured-project {
  background:
    linear-gradient(105deg, #10212e, #1b2b39), url("../images/featured-bg.jpg");
  background-blend-mode: overlay;
  background-size: cover;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

.featured-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.featured-content h2 span {
  display: block;
  font-size: 1.5rem;
  color: #c9a355;
}

.featured-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.featured-btn {
  display: inline-block;
  background: #c9a355;
  color: #1e2a37;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.featured-btn:hover {
  background: #b8862c;
  transform: translateY(-2px);
}

/* Project Hero */
.project-hero {
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  text-align: center;
  color: white;
}

.project-hero h1 {
  font-size: 3.5rem;
  color: #c9a355;
  margin-bottom: 0.5rem;
}

.project-hero p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* Project Intro */
.project-intro {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: #1e2a37;
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d3a47;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background: #faf9f7;
}

.section-title {
  font-size: 2.5rem;
  color: #1e2a37;
  border-left: 8px solid #c9a355;
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.gallery-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.gallery-item-large {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item-large img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item-large:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1.5rem;
  margin: 0;
  font-size: 1.1rem;
  text-align: center;
}

/* Lifestyle Section */
.lifestyle-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2rem;
  background: white;
}

.lifestyle-content {
  flex: 1 1 400px;
}

.lifestyle-content h2 {
  font-size: 2.2rem;
  color: #1e2a37;
  margin-bottom: 1.5rem;
}

.lifestyle-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2d3a47;
}

.lifestyle-image {
  flex: 1 1 400px;
}

.lifestyle-image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Detailed Specifications */
.specs-detailed {
  padding: 4rem 2rem;
  background: #f3f1ed;
}

.specs-category {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.specs-category h3 {
  color: #c9a355;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #c9a355;
  padding-bottom: 0.5rem;
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px dashed #ddd;
  padding: 0.8rem 0;
}

.spec-label {
  width: 200px;
  font-weight: 700;
  color: #1e2a37;
}

.spec-value {
  flex: 1;
  color: #4f5a64;
  line-height: 1.6;
}

/* Night View Section */
.night-view-section {
  background: #1e2a37;
  padding: 2rem;
}

.night-image img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: 20px;
}

.night-caption-large {
  text-align: center;
  color: #c9a355;
  font-size: 1.3rem;
  padding: 1.5rem;
  letter-spacing: 2px;
}

/* Happiness Section */
.happiness-section {
  padding: 4rem 2rem;
  background: white;
  text-align: center;
}

.happiness-content h2 {
  font-size: 3rem;
  color: #1e2a37;
  margin-bottom: 2rem;
}

.happiness-content img {
  max-width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Project Highlights */
.project-highlights {
  padding: 4rem 2rem;
  background: #faf9f7;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.highlight-box {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.highlight-box:hover {
  transform: translateY(-5px);
}

.highlight-box i {
  font-size: 2.5rem;
  color: #c9a355;
  margin-bottom: 1rem;
}

.highlight-box h4 {
  color: #1e2a37;
  font-size: 1.2rem;
}

/* Location Section */
.location-section {
  padding: 4rem 2rem;
  background: white;
}

.map-container {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Buttons */
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
  .project-hero h1 {
    font-size: 2.5rem;
  }

  .gallery-grid-large {
    grid-template-columns: 1fr;
  }

  .gallery-item-large img {
    height: 300px;
  }

  .lifestyle-section {
    flex-direction: column;
  }

  .spec-row {
    flex-direction: column;
  }

  .spec-label {
    width: 100%;
    margin-bottom: 0.3rem;
  }

  .happiness-content h2 {
    font-size: 2rem;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 100%;
    max-width: 300px;
  }
}
