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

:root {
  --bg-color: #F8F5F0;
  --text-color: #3B2F2F;
  --text-light: #5A4E4D;
  --accent-color: #C26A4A;
  --accent-hover: #A55639;
  --sage-color: #A2A796;
  --border-color: #E2DBD0;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'PT Sans', sans-serif;
  --container-width: 1100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-hover);
}

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

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

header {
  padding: 1.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-color);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-color: #2a2220;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hero-workshop.jpg') center/cover no-repeat;
  opacity: 0.6;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: #F8F5F0;
  margin-bottom: 2rem;
  opacity: 0.9;
}

section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(59, 47, 47, 0.1);
}

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

.feature-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--sage-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
}

.gallery-large {
  grid-column: span 2;
  height: 500px !important;
}

.form-section {
  background-color: var(--sage-color);
  color: #fff;
  padding: 5rem 0;
}

.form-section h2 {
  color: #fff;
}

.lead-form-container {
  max-width: 500px;
  margin: 0 auto;
  background: var(--bg-color);
  padding: 3rem;
  border-radius: 8px;
  color: var(--text-color);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.lead-form-container .btn {
  width: 100%;
  margin-top: 1rem;
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  color: var(--accent-color);
  font-size: 1.5rem;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  display: none;
  padding-top: 1rem;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  display: block;
}

footer {
  background-color: var(--text-color);
  color: #F8F5F0;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-nav {
  margin-bottom: 2rem;
}

.footer-nav a {
  color: #F8F5F0;
  margin: 0 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

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

.footer-info {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-text {
  font-size: 0.9rem;
  max-width: 800px;
}

.cookie-btn {
  background-color: var(--text-color);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--font-body);
}

.page-header {
  background-color: var(--sage-color);
  padding: 8rem 0 4rem;
  text-align: center;
  color: #fff;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.page-content h2 {
  margin-top: 2rem;
}

.success-content {
  text-align: center;
  padding: 10rem 0;
}

.success-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.bg-light {
  background-color: #EFEBE4;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-large {
    grid-column: span 1;
  }

  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
