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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #A18167;
  color: #f9f5f3;
  line-height: 1.6;
}


/* ===== Header ===== */
.site-header {
  display: flex;
  justify-content:flex-start; /* Logo left, nav right */
  align-items: center;
  padding: 15px 40px;
  background: rgba(123, 102, 102, 0.599);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
  
}





.logo img {
  width: 80px;
}
.nav {
  margin-left: auto;
}
.nav a {
  color: #0b0303;
  text-decoration: none;
  margin-right: 25px;
  font-weight: 600;
  transition: color 0.3s;
}


.nav a:hover {
  color: #f1cbb0;
}

/* ===== Hero ===== */
.hero {
  height: 150vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  margin-bottom: 10px;
  color:#24150f;
}

.accent {
  color:#24150f;
}

.sub {
  font-size: 1.2rem;
  font-weight: 300;
}

/* ===== Sections ===== */
section {
  padding: 80px 20px;
}

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

.center {
  text-align: center;
  margin-bottom: 40px;
}

/* ===== MAIN HEADER ===== */
.main-header {
  /* soft brown background */
  height: 50px; /* full screen height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: #24150f; /* deep brown text */
  letter-spacing: 5px;
  animation: fadeIn 2s ease-in-out;
}

/* Optional fade animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.about {
  background-color:#A18167; /* same brown shade */
  padding: 10px 0;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start; /* text starts at top (like image 2) */
  justify-content: center;
  gap: 50px; /* space between image and text */
  padding: 0 20px;
}

.about-image img {
  width: 550px;
  height: 550px; /* bigger image */
  
 
  object-fit: cover;
}

.about-text {
  max-width: 550px;
}

.about-text h2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  line-height: 1.7;
  font-size: 16px;
  color: #2f2f2f;
}

.gallery {
  background-color: #A18167;
  padding: 60px 0;
  text-align: center;
}

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

.main-image img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: opacity 1s ease; /* smooth fade effect */
}

.thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumbnails img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.7;
}

.thumbnails img.active {
  transform: scale(1.05);
  opacity: 1;
}


/* ===== Contact ===== */
.contact-inner {
  text-align: center;
}

/* Contact Heading */
.contact-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;          /* Big elegant heading */
  color: #402A21;           /* Elegant brown shade */
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

/* Subtext (optional, like “Better yet, see us in person!”) */
.contact-inner p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #5a4a42;
  margin-bottom: 25px;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #fefdfd;
  color: #0a0a0a;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #20b85c;
}

.whatsapp-btn img {
  width: 20px;
}

/* Map */
.map-wrap iframe {
  width: 100%;
  height: 300px;
  border: none;
  margin-top: 30px;
}

/* Remove dots from Business Hours list */
.hours {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

/* ===== Clients ===== */
.clients h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 56px !important;      /* make it large */
  font-weight: 700;
  color: #402A21;                  /* adjust if your background differs */
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}




/* ===== Footer ===== */
.site-footer {
  background: #5e4841;
  padding: 30px 0;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

.logo-small {
  width: 100px;
  margin-bottom: 10px;
}

/* ===== Chat Widget ===== */
.chat-floating {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #f1cbb0;
  color: #7d645c;
  font-size: 1.5rem;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.chat-floating:hover {
  transform: scale(1.1);
}

.chat-widget {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #fff;
  color: #333;
  width: 280px;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.chat-header {
  background: #7d645c;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-body {
  padding: 15px;
}

.btn-primary {
  background: #7d645c;
  color: #fff;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 6px;
}

.btn-ghost {
  background: none;
  border: 1px solid #7d645c;
  color: #7d645c;
  padding: 8px 14px;
  border-radius: 6px;
}