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

:root {
  --primary-light: #fbfdff;
  --secondary-light: #eef6ff;
  --dark: #0b1b2b;
  --accent-teal: #4dd6c1;
  --accent-purple: #a78bfa;
  --accent-warm: #f2d6a2;
  --text-dark: #0b1b2b;
  --text-light: #fbfdff;
}

html, body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  background: var(--primary-light);
  line-height: 1.6;
}

body {
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,.03) 2px, rgba(0,0,0,.03) 4px);
}

header {
  background: var(--primary-light);
  border-bottom: 1px solid rgba(0, 27, 43, 0.1);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--dark);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--dark);
  text-transform: none;
  transition: opacity 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav-link:hover {
  opacity: 0.6;
  border-bottom: 1px solid var(--accent-teal);
  color: var(--dark);
}

.container {
  max-width: 1200px;
}

section {
  padding: 6rem 0;
}

.hero-section {
  background: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70vh;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

h1 {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.subheading {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgba(11, 27, 43, 0.7);
  margin-bottom: 2rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 1rem;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 27, 43, 0.1);
  background: var(--secondary-light);
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: var(--primary-light);
  box-shadow: 0 10px 25px rgba(77, 214, 193, 0.2);
}

.cta-button-secondary {
  background: var(--accent-purple);
  border-color: var(--accent-purple);
  color: var(--primary-light);
}

.cta-button-secondary:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
}

footer {
  background: var(--dark);
  color: var(--primary-light);
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--accent-teal);
  font-weight: 400;
  margin-bottom: 1rem;
}

.footer-section a,
.footer-section p {
  color: rgba(251, 253, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(251, 253, 255, 0.6);
}

.container-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: 4rem;
  border: 1px solid rgba(0, 27, 43, 0.08);
  margin: 3rem 0;
}

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

.content-text {
  flex: 1;
}

.content-image {
  flex: 1;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.text-balance {
  word-spacing: 100vw;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--primary-light);
  padding: 1.5rem;
  z-index: 1000;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#cookie-banner.show {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: var(--accent-teal);
  color: var(--dark);
}

.cookie-accept:hover {
  background: var(--accent-warm);
}

.cookie-reject {
  background: transparent;
  color: var(--primary-light);
  border: 1px solid var(--primary-light);
}

.cookie-reject:hover {
  background: rgba(251, 253, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

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

  .gallery-section {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  .hero-content {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
