/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --primary-color: #8b5a2b;
  --secondary-color: #d2b48c;
  --accent-color: #2e8b57;
  --dark-bg: #1a1a1a;
  --light-bg: #f5f5dc;
  --text-dark: #333;
  --text-light: #f5f5f5;
  --font-main: 'Outfit', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background-color: rgba(26, 26, 26, 0.95);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-accent);
  font-size: 2rem;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: 90vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/img/hero.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 0 5%;
}

.hero-content h1 {
  font-family: var(--font-accent);
  font-size: 4.5rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background-color: #a06b38;
  transform: translateY(-3px);
}

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

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

/* General Sections */
section {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 3rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

/* Social Proof */
.social-proof {
  background-color: var(--dark-bg);
  padding: 3rem 5%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.social-proof svg {
  height: 40px;
  fill: var(--secondary-color);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.social-proof svg:hover {
  opacity: 1;
}

/* About Us */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.about-img:hover {
  transform: scale(1.02);
}

.about-text h2 {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark-bg);
}

/* Services (Bento Grid) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--dark-bg);
  color: var(--text-light);
}

.testimonials .section-title {
  color: var(--secondary-color);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  overflow: hidden;
}

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

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* CTA */
.cta-section {
  text-align: center;
  background-color: var(--primary-color);
  color: white;
  padding: 5rem 5%;
}

/* Footer */
footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
}

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
  transition: bottom 0.5s ease-in-out;
  z-index: 9999;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-banner p {
  margin-right: 2rem;
}

.cookie-banner a {
  color: var(--secondary-color);
}

/* Inner Pages */
.page-header {
  height: 40vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./assets/img/about.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.page-header h1 {
  font-family: var(--font-accent);
  font-size: 3.5rem;
}

.content-section {
  background-color: white;
  padding: 4rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-top: -50px;
  position: relative;
  z-index: 2;
}

.content-section p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.content-section h2 {
  font-family: var(--font-accent);
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .about-grid, .services-grid {
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
