/* ===========================
   Global Styles & Reset
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
  background: #f8f9fa;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ===========================
   Color Scheme Variables
   =========================== */
:root {
  --navy-deep: #1a2332;
  --navy-dark: #243447;
  --navy-medium: #2d4059;
  --yellow-soft: #f4d03f;
  --yellow-light: #f9e79f;
  --silver: #bdc3c7;
  --silver-light: #d5dbdb;
  --silver-dark: #95a5a6;
  --white: #ffffff;
  --text-dark: #2c3e50;
  --text-light: #ecf0f1;
}

/* ===========================
   Container & Layout
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   Typography
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy-deep);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--navy-deep);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow-soft) 0%, var(--silver) 100%);
  border-radius: 2px;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow-soft) 0%, #f5b041 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

.btn-large {
  font-size: 1.2rem;
  padding: 15px 40px;
}

.btn-accept {
  background: var(--yellow-soft);
  color: var(--navy-deep);
}

.btn-accept:hover {
  background: #f5b041;
}

.btn-decline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--silver);
}

.btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===========================
   Cookie Banner
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 20px;
  z-index: 9999;
  border-top: 3px solid var(--yellow-soft);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

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

.cookie-content p {
  flex: 1;
  margin: 0;
  color: var(--text-light);
}

.cookie-content a {
  color: var(--yellow-soft);
  text-decoration: underline;
}

.cookie-content a:hover {
  color: var(--yellow-light);
}

.cookie-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ===========================
   Header & Navigation
   =========================== */
.bg-header {
  background: var(--navy-deep);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--yellow-soft);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow-soft);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.logo a:hover {
  color: var(--yellow-light);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 1rem;
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow-soft);
  transition: width 0.3s ease;
}

.nav a:hover {
  color: var(--yellow-soft);
}

.nav a:hover::after {
  width: 100%;
}

/* Burger Menu */
.menu-toggle {
  display: none;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  width: 30px;
  height: 25px;
}

.burger-line {
  width: 100%;
  height: 3px;
  background: var(--yellow-soft);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  backface-visibility: hidden;
  transform-origin: center center;
}

.burger-line:nth-child(1) {
  top: 0;
}

.burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-line:nth-child(3) {
  bottom: 0;
}

/* Burger Animation */
.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.menu-toggle:checked ~ .burger-menu .burger-line:nth-child(3) {
  bottom: 50%;
  left: 0;
  transform: translateY(50%) rotate(-45deg);
}

/* ===========================
   Hero Section
   =========================== */
.hero-section {
  background: linear-gradient(
      135deg,
      rgba(26, 35, 50, 0.85) 0%,
      rgba(45, 64, 89, 0.85) 100%
    ),
    url('images/city.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(244, 208, 63, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(189, 195, 199, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: var(--silver-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  font-size: 1.2rem;
  padding: 15px 40px;
}

/* ===========================
   About Section
   =========================== */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.8;
}

.about-intro {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy-medium);
}

.about-closing {
  font-weight: 600;
  color: var(--navy-deep);
}

.about-image {
  position: sticky;
  top: 100px;
}

/* ===========================
   Guide Section
   =========================== */
.guide-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ecf0f1 100%);
}

.guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.guide-image {
  position: sticky;
  top: 100px;
}

.guide-subtitle {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--navy-deep);
}

.guide-text h4 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
  color: var(--navy-medium);
}

.guide-text p {
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.8;
}

.guide-closing {
  font-weight: 600;
  color: var(--navy-deep);
  background: rgba(244, 208, 63, 0.1);
  padding: 20px;
  border-left: 4px solid var(--yellow-soft);
  border-radius: 5px;
}

/* ===========================
   Images
   =========================== */
.image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(
    135deg,
    var(--silver-light) 0%,
    var(--silver) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-medium);
  border-radius: 10px;
  border: 3px dashed var(--silver-dark);
  text-align: center;
  padding: 20px;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.section-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

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

.faq-item {
  background: #f8f9fa;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  border-left: 5px solid var(--yellow-soft);
  transition: all 0.3s ease;
}

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

.faq-question {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--navy-deep);
}

.faq-answer {
  color: var(--text-dark);
  line-height: 1.8;
}

/* ===========================
   Reviews Section
   =========================== */
.reviews-section {
  padding: 80px 0;
  background: linear-gradient(
      to bottom,
      rgba(248, 249, 250, 0.95) 0%,
      rgba(236, 240, 241, 0.95) 100%
    ),
    url('images/castle.jpg');
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

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

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--yellow-soft);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-author {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy-deep);
  margin-bottom: 15px;
}

.review-text {
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-subtitle {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--navy-deep);
}

.contact-info {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
  border-left: 5px solid var(--yellow-soft);
}

.contact-item {
  margin-bottom: 25px;
  color: var(--text-dark);
  line-height: 1.8;
}

.contact-item strong {
  color: var(--navy-deep);
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-item a {
  color: var(--navy-medium);
  text-decoration: none;
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--yellow-soft);
  text-decoration: underline;
}

/* ===========================
   Contact Form
   =========================== */
.contact-form-wrapper {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 10px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--navy-deep);
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid var(--silver-light);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--yellow-soft);
}

.form-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-checkbox input {
  width: auto;
}

.form-checkbox label {
  margin: 0;
  font-weight: 400;
}

.form-checkbox a {
  color: var(--navy-medium);
  text-decoration: underline;
}

.form-checkbox a:hover {
  color: var(--yellow-soft);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(
      135deg,
      rgba(26, 35, 50, 0.9) 0%,
      rgba(45, 64, 89, 0.9) 100%
    ),
    url('images/magic-statue.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      circle at 30% 30%,
      rgba(244, 208, 63, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(189, 195, 199, 0.15) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-light);
}

.cta-text {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--silver-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Footer
   =========================== */
.bg-footer {
  background: var(--navy-deep);
  padding: 40px 0 30px;
  border-top: 3px solid var(--yellow-soft);
}

.footer-links {
  text-align: center;
  margin-bottom: 25px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--yellow-soft);
}

.footer-copyright {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(189, 195, 199, 0.3);
  color: var(--silver-light);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 900px) {
  /* Show burger menu */
  .burger-menu {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2000; /* above .nav (999) and header */
  }

  /* Hide default nav, show as mobile menu */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--navy-deep);
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    border-left: 3px solid var(--yellow-soft);
  }

  .menu-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .nav ul {
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
  }

  .nav li {
    border-bottom: 1px solid rgba(189, 195, 199, 0.2);
  }

  .nav a {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
  }

  .nav a::after {
    display: none;
  }

  /* Layout adjustments */
  .about-grid,
  .guide-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .guide-image {
    order: -1;
  }

  .about-image,
  .guide-image {
    position: static;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .contact-info {
    padding: 30px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

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

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

  .cookie-form,
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

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

  .footer-nav {
    flex-direction: column;
    gap: 15px;
  }

  /* Disable fixed backgrounds on mobile for better performance */
  .hero-section,
  .reviews-section,
  .cta-section {
    background-attachment: scroll;
  }
}

/* ===========================
   Background Decorative Elements
   =========================== */
.bg-decoration-1 {
  background-image: radial-gradient(
      circle at 10% 20%,
      rgba(244, 208, 63, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(189, 195, 199, 0.05) 0%,
      transparent 50%
    );
}

.bg-decoration-2 {
  background-image: linear-gradient(
      120deg,
      rgba(26, 35, 50, 0.03) 0%,
      transparent 100%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(244, 208, 63, 0.03) 0%,
      transparent 70%
    );
}
