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

:root {
  --color-bg: #fdf8f2;
  --color-primary: #1e5f6e;
  --color-accent: #d4a843;
  --color-text: #2c2c2c;
  --color-light: #ffffff;
  --color-border: #e8ded1;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

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

.logo:hover {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

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

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

.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-light);
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: var(--font-body);
}

.btn:hover {
  background-color: #164753;
  color: var(--color-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 95, 110, 0.2);
}

.btn-large {
  padding: 16px 36px;
  font-size: 1.1rem;
}

.btn-accent {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: #be9537;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 168, 67, 0.2);
}

section {
  padding: 100px 0;
}

section:nth-child(even) {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
}

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  background-image: url('images/hero-beads.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(253, 248, 242, 0.95) 0%, rgba(253, 248, 242, 0.7) 50%, rgba(253, 248, 242, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero h1 {
  font-size: 3.5rem;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero h1 i {
  font-style: italic;
  font-weight: 400;
  color: var(--color-accent);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: #4a4a4a;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background-color: var(--color-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.card h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.skill-icon {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-top: 2px;
  line-height: 1;
}

.skill-item h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-weight: 600;
}

.program-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.program-step {
  padding-left: 50px;
  position: relative;
  margin-bottom: 40px;
}

.program-step:last-child {
  margin-bottom: 0;
}

.program-step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: -2px;
  width: 32px;
  height: 32px;
  background-color: var(--color-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--font-heading);
}

.program-timeline {
  counter-reset: step-counter;
}

.program-step::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: -30px;
  width: 2px;
  background-color: var(--color-border);
}

.program-step:last-child::after {
  display: none;
}

.program-step h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.program-step p {
  color: #555;
  margin-bottom: 12px;
}

.program-step ul {
  list-style: none;
}

.program-step ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #4a4a4a;
}

.program-step ul li::before {
  content: '—';
  color: var(--color-accent);
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: center;
}

.format-img {
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  overflow: hidden;
}

.format-list {
  list-style: none;
}

.format-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.format-list .icon {
  background-color: var(--color-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-weight: bold;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.format-list h4 {
  margin-bottom: 4px;
  font-size: 1.1rem;
}
.format-list p {
  color: #666;
  font-size: 0.95rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.gallery-featured {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.gallery-featured img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 20px;
  background: linear-gradient(transparent, rgba(30, 95, 110, 0.9));
  color: white;
}
.gallery-caption h3 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.gallery-caption p {
  color: rgba(255,255,255,0.9);
}

.split-section {
  display: flex;
  gap: 60px;
  align-items: center;
  background-color: var(--color-light);
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  border: 1px solid var(--color-border);
  margin-bottom: 40px;
}
.split-section.reverse {
  flex-direction: row-reverse;
}
.split-photo {
  flex: 0 0 45%;
  border-radius: 8px;
  overflow: hidden;
}
.split-info {
  flex: 1;
}

.split-info h3 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.split-info .subtitle {
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.split-info p {
  margin-bottom: 16px;
  color: #555;
}

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

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

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

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-accent);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}

.faq-icon::after {
  top: 0;
  left: 9px;
  width: 2px;
  height: 20px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.4s ease;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 16px;
}

.cta-section {
  background-color: var(--color-primary);
  color: var(--color-light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--color-light);
}

.cta-section p {
  color: rgba(255,255,255,0.8);
}

.lead-form {
  max-width: 450px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  background-color: rgba(255,255,255,0.05);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-control:focus {
  outline: none;
  background-color: rgba(255,255,255,0.1);
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.lead-form .btn {
  width: 100%;
  margin-top: 8px;
  font-size: 1.1rem;
  padding: 18px;
}

.form-disclaimer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-top: 16px;
}
.form-disclaimer a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

.footer {
  background-color: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  margin-bottom: 24px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: white;
  text-decoration: none;
  margin-bottom: 24px;
  display: inline-block;
  font-weight: 700;
}

.footer h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 24px;
}

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

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
  padding: 20px 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid var(--color-border);
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cookie-text {
  font-size: 0.95rem;
  color: #555;
}

.cookie-text a {
  text-decoration: underline;
  color: var(--color-primary);
}

.page-header {
  padding: 160px 0 60px;
  background-color: var(--color-bg);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-header h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
}

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

.page-content h2 {
  margin-top: 40px;
  color: var(--color-primary);
  font-size: 1.8rem;
}

.page-content p, .page-content ul {
  margin-bottom: 24px;
  color: #444;
}

.page-content ul {
  padding-left: 24px;
}
.page-content ul li {
  margin-bottom: 8px;
}

.success-content {
  text-align: center;
  padding: 120px 0;
}
.success-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.success-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .format-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-section, .split-section.reverse {
    flex-direction: column;
    padding: 40px;
    text-align: center;
  }
  .split-photo {
    flex: 0 0 auto;
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .skills-list {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .page-header {
    padding: 120px 0 40px;
  }
  section {
    padding: 60px 0;
  }
}
