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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fefdfb;
}

html {
  scroll-behavior: smooth;
}

#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 1000;
}

#main-header .navbar {
  padding: 1rem 0;
}

#main-header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
}

#main-header .nav-link {
  color: #555;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

#main-header .nav-link:hover {
  color: #f4b95c;
}

#main-header .btn-primary {
  background: linear-gradient(135deg, #f4b95c 0%, #f0a83e 100%);
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1.5rem;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

#main-header .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 185, 92, 0.3);
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fff9f0 0%, #fef5e7 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.btn-hero {
  background: linear-gradient(135deg, #f4b95c 0%, #f0a83e 100%);
  border: none;
  border-radius: 8px;
  padding: 1rem 2.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(244, 185, 92, 0.4);
  color: #fff;
  text-decoration: none;
}

.content-section {
  padding: 80px 0;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
}

.content-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

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

.bg-warning-soft {
  background-color: #fff9f0;
  border-top: 3px solid #f4b95c;
  border-bottom: 3px solid #f4b95c;
}

.rounded-image {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.intro-text {
  font-size: 1.2rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.card-custom {
  padding: 1.5rem;
  height: 100%;
}

.card-custom h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.card-custom p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.moment-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.moment-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.moment-card p {
  font-size: 1rem;
  color: #666;
}

.place-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.place-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.place-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.limit-list {
  list-style: none;
  padding: 0;
}

.limit-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.5;
}

.limit-list li:before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-weight: 700;
  font-size: 1.2rem;
}

.limit-footer {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-item {
  background: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
}

.disclaimer-box {
  background: #fff9f0;
  border: 2px solid #f4b95c;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.disclaimer-box p {
  margin: 0;
  font-size: 1.1rem;
  color: #2c2c2c;
}

.contact-form {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-form .form-control {
  border-radius: 8px;
  padding: 0.8rem;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: #f4b95c;
  box-shadow: 0 0 0 0.2rem rgba(244, 185, 92, 0.25);
}

.contact-form .btn-block {
  padding: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
}

.contact-info {
  background: #fafaf8;
  padding: 2rem;
  border-radius: 10px;
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.site-footer {
  background: #2c2c2c;
  color: #fff;
  padding: 60px 0 20px;
}

.site-footer h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #f4b95c;
}

.site-footer p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

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

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f4b95c;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #444;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #999;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2c2c2c;
  color: #fff;
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.cookie-banner .btn-primary {
  background: #f4b95c;
  border: none;
}

.cookie-banner .btn-secondary {
  background: #555;
  border: none;
}

.cookie-banner .btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.cookie-banner .btn-outline-light:hover {
  background: #fff;
  color: #2c2c2c;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
}

.cookie-modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c2c2c;
}

.cookie-option {
  margin-bottom: 1.5rem;
}

.cookie-option label {
  font-weight: 600;
  color: #2c2c2c;
  display: block;
  margin-bottom: 0.5rem;
}

.cookie-option p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

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

.cookie-buttons .btn {
  flex: 1;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-text {
    font-size: 1.1rem;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .cookie-banner .col-lg-4 {
    margin-top: 1rem;
  }

  .cookie-banner .text-right {
    text-align: left !important;
  }
}

@media (max-width: 767px) {
  #main-header .btn-primary {
    margin-top: 1rem;
    width: 100%;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .content-section {
    padding: 60px 0;
  }
}
