/* =========================================================
   GLOBAL BASE STYLES
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  overflow-x: hidden;
  background: #faf8f6;
  color: #1f1a16;
  scroll-behavior: smooth;
  font-family: 'Inter', sans-serif;
}

/* Typography */
h1, h2, h3, .section-title {
  font-family: 'Playfair Display', serif;
  color: #111;
  letter-spacing: -0.4px;
}

p, .nav-menu a, footer {
  font-family: 'Inter', sans-serif;
  color: #555;
}

/* Wrapper for center content */
.page {
  max-width: 1200px;
  margin: auto;
  padding: 40px 24px;
}

/* =========================================================
   HEADER
========================================================= */
.full-width-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  z-index: 1000;
}

body { padding-top: 110px; }

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-wrap { display: flex; align-items: center; gap: 10px; }

.brand-logo { height: 85px; width: auto; }

.brand-name {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #2d3b38;
}

.brand-tagline {
  font-size: 11px;
  color: #6a5c4d;
}

/* Navigation */
.nav-menu a {
  margin-left: 26px;
  font-size: 14px;
  text-decoration: none;
  color: #4e4e4e;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active { color: #000; }

/* =========================================================
   HERO SECTION
========================================================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 96vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 160px 20px 120px;
  text-align: center;
  overflow: hidden;
}

.hero-content { position: relative; z-index: 2; max-width: 800px; }

.hero-section h1 {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 28px;
}

.hero-section p {
  font-size: 20px;
  max-width: 600px;
  line-height: 1.8;
  margin: auto auto 48px;
}

.cta-button {
  padding: 15px 40px;
  font-size: 17px;
  border-radius: 40px;
  background: #111;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}
.cta-button:hover { background: #333; }

/* Hero background */
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/living-room-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.45;
  filter: brightness(0.75);
  z-index: 1;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

/* =========================================================
   SHOWCASE SECTION
========================================================= */
.showcase-section {
  display: flex;
  gap: 50px;
  align-items: center;
  margin: 140px 0;
}

.showcase-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.showcase-text h2 { font-size: 40px; margin-bottom: 14px; }

/* =========================================================
   OFFERINGS (OR EXPERIENCE) SECTION
========================================================= */
.offerings-section {
  text-align: center;
  padding: 20px 0 50px;
  scroll-margin-top: 140px;
}

.section-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: #7b7b7b;
  margin-bottom: 14px;
}

.offerings-header h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.offerings-list {
  margin-top: 60px;
  display: grid;
  gap: 60px;
}

/* =========================================================
   CONTACT SECTION — Unique Premium
========================================================= */
.contact-section {
  width: 100%;
  padding: 30px 0 30px;
  position: relative;
  background: #f6f4f2;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(230,225,219,0.45), transparent 70%);
  filter: blur(80px);
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
}

.contact-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  padding: 0 24px;
  position: relative;
  align-items: center;
}

.contact-title {
  font-size: 50px;
  margin-bottom: 20px;
  font-family: 'Playfair Display';
}

.contact-tagline {
  font-size: 19px;
  color: #6a645c;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 540px;
}

.contact-lines p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-lines a {
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.contact-lines a:hover {
  border-bottom-color: #222;
}

.contact-cta {
  margin-top: 30px;
  display: inline-block;
  padding: 15px 42px;
  border-radius: 40px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  transition: .3s;
}

.contact-cta:hover { background: #333; }

/* Right Image */
.contact-right img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* =========================================================
   FOOTER
========================================================= */
footer {
  text-align: center;
  padding: 40px 0 20px;
  font-size: 13px;
  color: #777;
}

/* =========================================================
   WHATSAPP FLOATING
========================================================= */
.whatsapp-float {
  position: fixed;
  width: 54px; height: 54px;
  bottom: 20px; right: 20px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
}
.whatsapp-float img { width: 32px; }

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .header-inner { flex-direction: column; text-align: center; }

  .showcase-section { flex-direction: column; text-align: center; gap: 30px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 24px; }

  .contact-title { font-size: 38px; }
}

@media (max-width: 600px) {
  h1.hero-section { font-size: 32px; }

  .hero-section { padding: 120px 16px 80px; min-height: 88vh; }

  .cta-button { padding: 12px 28px; font-size: 14px; }

  .contact-inner { max-width: 430px; padding: 30px 20px; }

  .contact-right img { margin-top: 30px; }

  .contact-title { font-size: 30px; }

  .contact-tagline { font-size: 16px; }

  .contact-cta { font-size: 14px; padding: 13px 32px; }
}

/* Fix header overlay on navigation scrolling */
section { scroll-margin-top: 140px; }