@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
  --primary: #1B4332;
  --secondary: #2D6A4F;
  --accent: #E9C46A;
  --bg-light: #F8F9FA;
  --bg-dark: #1B4332;
  --text-main: #2D3436;
  --text-light: #F8F9FA;
  --glass: rgba(255, 255, 255, 0.8);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
}

.hero-sub {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: var(--bg-light);
  border-bottom: 1px solid rgba(27, 67, 50, 0.1);
}

.hero-sub-article {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.1);
  padding: 0.75rem 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  display: block;
}

.logo-subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  display: block;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a.active {
  color: var(--secondary);
  font-weight: 700;
  border-bottom: 2px solid var(--accent);
}

.nav-links a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-phone {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 2px solid var(--accent);
}

.btn-cta:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Prominent CTA state */
.btn-cta.prominent {
  animation: pulse 2s infinite;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(233, 196, 106, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 196, 106, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(233, 196, 106, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(233, 196, 106, 0);
  }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer-col h3 {
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.footer-col ul li {
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.footer-col .nap-info {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-col .nap-info a {
  display: block;
  margin-top: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* New Sections */
.recommendations-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.recommendation-card,
.blog-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.recommendation-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
}

.social-placeholder {
  background: #f0f2f5;
  border-radius: 20px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
  color: #666;
  margin-top: 2rem;
}

.blog-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: var(--accent);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Booking Section */
.booking-container {
  background: white;
  padding: 4rem;
  border-radius: 30px;
  box-shadow: var(--shadow);
  text-align: center;
  margin-top: 3rem;
}

.booking-placeholder {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 15px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    transition: var(--transition);
    z-index: 999;
    gap: 2.5rem;
  }

  .nav-links li a {
    font-size: 1.5rem;
    color: var(--primary);
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  .menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
  }

  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .header-actions {
    gap: 0.8rem;
  }

  .header-actions .nav-phone {
    display: flex;
    font-size: 1.3rem;
  }

  .header-actions .nav-phone .phone-text {
    display: none;
  }

  .btn-cta {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (min-width: 969px) {
  .menu-toggle {
    display: none;
  }
}

/* Social Feed */
.social-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.social-card {
  background: white;
  padding: 1rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateY(-5px);
}

.social-img {
  height: 200px;
  border-radius: 10px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.btn-social {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  margin: 0 0.5rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-social:hover {
  background: var(--primary);
  color: white;
}

/* Stars */
.stars {
  color: var(--accent);
  letter-spacing: 5px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: white;
  padding: 1.5rem;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  font-size: 0.9rem;
  max-width: 600px;
}

.cookie-btn {
  background: var(--accent);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item input {
  display: none;
}

.faq-question {
  display: block;
  padding: 1.5rem 2rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
  color: #555;
  line-height: 1.7;
}

.faq-item input:checked~.faq-question {
  background: var(--bg-light);
}

.faq-item input:checked~.faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item input:checked~.faq-answer {
  max-height: 500px;
  padding: 0 2rem 2rem 2rem;
}

/* Mobile Sticky CTA */
.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  padding: 1rem;
  display: none;
  justify-content: center;
  z-index: 1500;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 968px) {
  .sticky-mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: 70px;
    /* Space for sticky bar */
  }
}