/* ===== HOME PAGE SPECIFIC STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700;800&display=swap');

:root {
  --gold: #c19a6b;
  --light-gold: #e6d5b8;
  --cream: #FFFDF5;
  --dark-brown: #2a2525;
  --medium-brown: #5A4B4B;
  --pure-white: #FFFFFF;
  --serif: 'Playfair Display', serif;
  --sans-serif: 'Inter', sans-serif;
  --text-light: #F3F3F3;
  --text-dark: #2F2F2F;
  --section-bg: #f9f6f1;
  --section-padding: 8rem;
  --content-gap: 4rem;
}

/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: var(--sans-serif);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  min-height: 100vh;
  margin: 0;
  position: relative;
}

/* BACKGROUND FOR HOME PAGE */
body.home {
  background: url('/images/img.jpeg') center/cover fixed no-repeat;
}

/* NAVIGATION BAR */
.luxury-nav {
  background-color: var(--pure-white);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--light-gold);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-brown);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--serif);
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo:hover::after {
  transform: scaleX(1);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--medium-brown);
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
  position: relative;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* HERO SECTION */
.luxury-hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  margin-top: 80px; /* offset for fixed nav */
  padding: 0 2rem;
}

/* REMOVED THE HERO OVERLAY */
/* .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
} */

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-content h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: var(--serif);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  letter-spacing: 1px;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* CALL TO ACTION BUTTON */
.cta-button {
  display: inline-block;
  background-color: var(--gold);
  color: var(--dark-brown);
  padding: 1rem 3rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s;
  border: 2px solid var(--gold);
  text-transform: uppercase;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(193, 154, 107, 0.3);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(193, 154, 107, 0.4);
}

/* ===== LUXURY SECTIONS ===== */
.luxury-main {
  overflow: hidden;
}

.luxury-section-container {
  padding: var(--section-padding) 0;
  position: relative;
}

.luxury-section-container.bg-light {
  background-color: var(--section-bg);
}

.luxury-section {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  gap: var(--content-gap);
}

.section-image, .section-content {
  flex: 1;
}

.image-frame {
  position: relative;
  overflow: hidden;
  height: 300px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hover-zoom:hover {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.section-content {
  padding: 2rem 0;
}

.content-wrapper {
  max-width: 500px;
}

.section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-subtitle.center {
  text-align: center;
}

.luxury-section h2 {
  font-size: 2.5rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  font-family: var(--serif);
  line-height: 1.3;
}

.divider {
  height: 2px;
  width: 60px;
  background: linear-gradient(to right, var(--gold), var(--light-gold));
  margin: 2rem 0;
}

.divider.center {
  margin: 2rem auto;
}

.elegant-text {
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  color: var(--medium-brown);
}

.learn-more {
  display: inline-flex;
  align-items: center;
  color: var(--dark-brown);
  font-weight: 500;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.learn-more span {
  margin-right: 10px;
  position: relative;
}

.learn-more span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.learn-more:hover {
  color: var(--gold);
}

.learn-more:hover span::after {
  width: 100%;
}

.learn-more i {
  transition: transform 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px);
}

/* FEATURES SECTION */
.luxury-features-container {
  padding: var(--section-padding) 0;
  background-color: var(--pure-white);
}

.luxury-features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  margin-bottom: 5rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--dark-brown);
  font-family: var(--serif);
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.feature {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--pure-white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(193, 154, 107, 0.1);
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(193, 154, 107, 0.1);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.8rem;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-family: var(--serif);
  color: var(--dark-brown);
}

.feature p {
  color: var(--medium-brown);
  line-height: 1.7;
}

/* ANIMATIONS */
.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-left.show, .slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* FOOTER */
.luxury-footer {
  background-color: var(--dark-brown);
  color: var(--text-light);
  padding: 5rem 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer-brand h3 {
  font-size: 1.8rem;
  font-family: var(--serif);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.footer-brand p {
  color: var(--light-gold);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--text-light);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--light-gold);
  font-size: 0.9rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  :root {
    --section-padding: 6rem;
    --content-gap: 3rem;
  }
  
  .luxury-section {
    flex-direction: column;
  }
  
  .slide-left, .slide-right {
    transform: translateY(30px);
  }
  
  .section-image, .section-content {
    width: 100%;
  }
  
  .content-wrapper {
    max-width: 100%;
  }
  
  .image-frame {
    height: 400px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 5rem;
  }
  
  .nav-container {
    flex-direction: column;
    padding: 1rem;
  }
  
  .logo {
    margin-bottom: 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .luxury-hero {
    min-height: 600px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  :root {
    --section-padding: 4rem;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
  }
  
  .luxury-section h2, .section-title {
    font-size: 2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */
.about-hero {
  background: url('../images/about-bg.jpg') no-repeat center center/cover;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.about-content {
  padding: var(--section-padding) 0;
  max-width: 1200px;
  margin: 0 auto;
}

.content-container {
  background-color: var(--pure-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.content-container h3 {
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  font-family: var(--serif);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  background-color: var(--pure-white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.stat-item h4 {
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 0.5rem;
  font-family: var(--serif);
}

/* ===== PRODUCT PAGE SPECIFIC STYLES ===== */
.product-hero {
  background: url('../images/product-bg.jpg') no-repeat center center/cover;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.product-grid {
  padding: var(--section-padding) 0;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid h3 {
  text-align: center;
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 3rem;
  font-family: var(--serif);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.product-card {
  background-color: var(--pure-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-image {
  height: 250px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 2rem;
}

.product-info h4 {
  font-size: 1.5rem;
  color: var(--dark-brown);
  margin-bottom: 1rem;
  font-family: var(--serif);
}

.product-features {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.product-features span {
  background-color: var(--light-gold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

.certification-section {
  background-color: var(--section-bg);
  padding: 4rem 0;
  text-align: center;
}

.certification-content h3 {
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 1.5rem;
  font-family: var(--serif);
}

.certification-badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.certification-badges img {
  height: 100px;
  object-fit: contain;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-hero {
  background: url('../images/contact-bg.jpg') no-repeat center center/cover;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 80px;
}

.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  padding: var(--section-padding) 0;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  background-color: var(--pure-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h3 {
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 2rem;
  font-family: var(--serif);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.submit-btn {
  background-color: var(--gold);
  color: var(--dark-brown);
  border: none;
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--dark-brown);
  color: var(--gold);
}

.contact-info {
  background-color: var(--pure-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-info h3 {
  font-size: 2rem;
  color: var(--dark-brown);
  margin-bottom: 2rem;
  font-family: var(--serif);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.map-section {
  padding: 0 2rem var(--section-padding);
  max-width: 1200px;
  margin: 0 auto;
} 

