/* style.css - Premium "La Maison" Design System */

:root {
  --primary-color: #1a2a3a;
  --secondary-color: #d4a373;
  --accent-color: #588157;
  --bg-color: #faf9f6;
  --text-color: #333333;
  --text-muted: #666666;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.8);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Lora', serif;
  letter-spacing: -1px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.8;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 800px;
}

.hero h1 {
  font-size: 4.5rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease forwards;
}

.btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #c38b55;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 163, 115, 0.3);
}

/* Feature Sections */
.intro-section {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-tag {
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 30px;
}

.content-block {
  margin-bottom: 80px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid.reverse {
  direction: rtl;
}

.content-grid.reverse .text-side {
  direction: ltr;
}

.image-side img {
  width: 100%;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.text-side h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-side p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
  margin-top: 10px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 1.8rem;
  font-family: 'Lora', serif;
  margin-bottom: 20px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  opacity: 0.6;
  font-size: 0.9rem;
}

.footer-links a:hover {
  opacity: 1;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .nav-links {
    display: none;
  }
}
