:root {
  --gold: #c9a24d;     /* luxury accent */
  --dark: #1a1a1a;
  --grey: #666;
  --light: #f7f7f7;
  --border: #e5e5e5;
}

body {
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}
/* =====================
   RESET & GLOBAL
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================
   NAVBAR
===================== */
/* ===== NAVBAR FIXED & CLEAN ===== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 45px;
}

.logo span {
  font-size: 20px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 15px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
  }
}


/* =====================
   HERO SECTION
===================== */
.hero {
  height: 80vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/tiles.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 60px;
  color: #fff;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
}

/* =====================
   FEATURES / CARDS
===================== */
.features {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.card {
  background: #ffffff;
  padding: 30px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* =====================
   COMMON PAGE SECTION
===================== */
.page {
  padding: 60px 40px;
  background: #ffffff;
}

.page h1 {
  margin-bottom: 25px;
}

/* =====================
   GRID (PRODUCTS & GALLERY)
===================== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.grid img {
  border-radius: 12px;
  cursor: pointer;
}

/* =====================
   CONTACT SECTION
===================== */
.contact {
  padding: 60px 40px;
  background: #ffffff;
  text-align: center;
}

/* =====================
   FOOTER
===================== */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
}

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

  .navbar {
    padding: 15px 20px;
  }

  .menu-btn {
    display: block;
  }

  nav {
    position: absolute;
    top: 65px;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    width: 200px;
    display: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  nav.active {
    display: flex;
  }

  nav a {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
  }

  .hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}
.map-wrapper {
  width: 100%;
  height: 450px;
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 600;
}

.logo img {
  height: 45px;        /* adjust if needed */
  width: auto;
}
.logo {
  color: #333;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #222;
}

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

.brand-logo span {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .brand-logo {
    font-size: 18px;
  }

  .brand-logo img {
    height: 36px;
  }
}
.brands {
  padding: 70px 0;
  background: var(--cream);
  text-align: center;
}

.brands h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--dark);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
}

.brands-grid img {
  max-width: 140px;
  margin: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brands-grid img:hover {
  filter: grayscale(0%);
  transform: scale(1.08);
}
.catalogue-accordion {
  max-width: 900px;
  margin: auto;
}

.brand-item {
  border-bottom: 1px solid #ddd;
}

.brand-header {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 10px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}

.brand-header img {
  height: 40px;
  max-width: 120px;
  width: 100%;
  object-fit: contain;
  display: block;
}

.brand-content {
  display: none;
  padding: 0 10px 20px 65px;
}

.brand-content h4 {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  text-transform: uppercase;
}

.brand-content ul {
  list-style: none;
  padding-left: 0;
}

.brand-content li {
  margin-bottom: 6px;
}

.brand-content a {
  text-decoration: none;
  color: #333;
}

.brand-content a:hover {
  color: var(--gold);
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--grey);
  max-width: 700px;
  margin-bottom: 40px;
}
.catalogue-accordion {
  background: #fff;
  border-radius: 14px;
  padding: 10px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.brand-header {
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.brand-header:hover {
  background: #fafafa;
}
.brand-header span {
  font-size: 20px;
  letter-spacing: 0.5px;
}

.brand-header img {
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.brand-header:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.brand-content {
  background: #fcfcfc;
  border-left: 3px solid var(--gold);
  margin-bottom: 15px;
}
.brand-content h4 {
  color: var(--dark);
  font-weight: 600;
  letter-spacing: 1px;
}
.brand-content a {
  padding: 6px 0;
  display: inline-block;
  position: relative;
}

.brand-content a::after {
  content: "↗";
  font-size: 12px;
  margin-left: 6px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.brand-content a:hover::after {
  opacity: 1;
}
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  .brand-header span {
    font-size: 17px;
  }

  .brand-content {
    padding-left: 15px;
  }
}
.hero {
  height: 90vh;
  background: url("/images/cover.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center 20%;

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-overlay {
  position: relative;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-overlay h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-overlay p {
  font-size: 18px;
  margin: 15px 0 30px;
}

.hero-btn {
  padding: 14px 32px;
  background: #c9a24d; /* gold tone */
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 30px;
}
/* ===== OWNER SECTION ===== */

.owner-section {
  background: #ffffff;
  padding: 80px 40px;
}

.owner-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 50px;
  align-items: center;
}

/* Owner Image */
.owner-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Owner Text */
.owner-content h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}

.owner-content h4 {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.owner-content p {
  color: #555;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* ===== SHOWROOM SECTION ===== */

.showroom-section {
  background: #f7f7f7;
  padding: 80px 40px;
}

.showroom-wrapper {
  max-width: 1000px;
  margin: auto;
}

.showroom-wrapper h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.showroom-wrapper p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

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

@media (max-width: 900px) {
  .owner-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .owner-image img {
    max-width: 280px;
    margin: auto;
  }
}
/* ===== GALLERY SECTION ===== */

.gallery-section {
  padding: 80px 40px;
  background: #ffffff;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.gallery-container h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.gallery-subtitle {
  color: #666;
  margin-bottom: 40px;
}

/* Video */
.gallery-video video {
  width: 100%;
  max-width: 900px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  margin-bottom: 50px;
}

/* Image Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-container h1 {
    font-size: 28px;
  }
}
.gallery-grid img {
  width: 100%;
  height: 260px;              /* 👈 SAME HEIGHT FOR ALL */
  object-fit: cover;          /* 👈 Crop but keep proportion */
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
/* ===== PRODUCTS SIZE TABLE ===== */

.products-section {
  padding: 80px 40px;
  background: #ffffff;
}

.products-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.products-container h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.products-subtitle {
  color: #666;
  margin-bottom: 40px;
}

.table-wrapper {
  overflow-x: auto;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
}

.size-table th,
.size-table td {
  padding: 14px 12px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
}

.size-table thead th {
  background: #f5f5f5;
  font-weight: 600;
}

.size-table tbody td:first-child {
  font-weight: 600;
  background: #fafafa;
  text-align: left;
}

.size-table td {
  text-align: center;
}

.size-table td:contains("✔") {
  color: #2e7d32;
}

.products-note {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .products-container h1 {
    font-size: 28px;
  }
}
/* ===== SURFACE & FINISH SECTION ===== */

.surface-section {
  background: #f8f8f8;
  padding: 70px 40px;
}

.surface-container {
  max-width: 1000px;
  margin: auto;
}

.surface-container h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.surface-container p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}

/* Highlight finish names */
.surface-container span {
  background: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 14px;
  margin: 2px 4px;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.surface-note {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Responsive */
@media (max-width: 768px) {
  .surface-container h2 {
    font-size: 24px;
  }
}
/* ===== WHATSAPP FLOAT BUTTON ===== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
#testimonials {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

#testimonials h2 {
  font-size: 2em;
  margin-bottom: 40px;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px 30px;
  margin: 10px auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 500px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-weight: bold;
  color: #333;
}

:root {
  --gold: #C5A253;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a {
  color: black;
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a {
  color: black;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
@media (max-width: 768px) {

  .navbar {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

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

  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-direction: row;   /* 👈 Important */
    justify-content: center;
    flex-wrap: wrap;       /* prevents overflow */
    gap: 12px;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    list-style: none;
  }

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

  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 5px;
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    padding: 6px 0;
  }
}
