/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #faf8f5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 4px;
  color: #fff;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 28px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

/* === Hero === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('hero.webp') center center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 200, 100, 0.08) 0%, transparent 100%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(100, 200, 150, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 40% 50% at 80% 60%, rgba(200, 100, 50, 0.04) 0%, transparent 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, #faf8f5, transparent);
  z-index: 2;
}

/* Stars effect - remove if real image used */
.hero .stars {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 50px 160px, rgba(255,255,255,0.7), transparent),
    radial-gradient(2px 2px at 90px 40px, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 130px 80px, rgba(255,255,255,0.6), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.7), transparent);
  background-size: 200px 200px;
  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 3px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 32px;
  font-weight: 300;
  letter-spacing: 1px;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: #e07a5f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  border: 2px solid #e07a5f;
}

.btn:hover {
  background: transparent;
  color: #e07a5f;
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a2e;
  letter-spacing: 2px;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #e07a5f;
  margin: 16px auto 0;
}

.dark {
  background: #1a1a2e;
  color: #e0e0e0;
}

.dark h2 {
  color: #fff;
}

.dark h2::after {
  background: #e07a5f;
}

.subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: #888;
  margin-top: -36px;
  margin-bottom: 50px;
}

.dark .subtitle {
  color: #aaa;
}

/* === About === */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.about-facts {
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.about-facts h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.about-facts ul {
  list-style: none;
}

.about-facts li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
}

.about-facts li:last-child {
  border-bottom: none;
}

.about-facts li span {
  font-size: 1.2rem;
}

/* === Cards === */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 36px 28px;
  transition: transform 0.3s, background 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: 1px;
}

.card p {
  font-size: 0.95rem;
  color: #bbb;
  line-height: 1.7;
}

/* === Plan === */
.plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.plan-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s;
}

.plan-item:hover {
  transform: translateY(-3px);
}

.plan-step {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e07a5f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.plan-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #1a1a2e;
}

.plan-item p {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.7;
}

/* === Gallery === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.gallery-item span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.gallery-item.tall {
  grid-row: span 2;
  height: auto;
}

/* === Contact === */
.contact-info {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-info p {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: #555;
}

.contact-info a {
  color: #e07a5f;
  text-decoration: none;
  font-weight: 500;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 30px 0;
  background: #1a1a2e;
  color: #888;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* === Animation === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Mobile === */
@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links a {
    margin-left: 14px;
    font-size: 0.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

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

  .gallery-item.tall {
    grid-row: span 1;
  }

  .section {
    padding: 60px 0;
  }

  .section h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2rem;
  }
}
