*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
  background: #23282c;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================================
   HEADER
   ============================================================================ */

header {
  padding: 40px 16px 20px 16px;
  text-align: center;
  box-sizing: border-box;
  background: #111315;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.logo {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 12px;
  margin: 0 auto 18px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 6px;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.2em 0;
  line-height: 1.1;
}

.h1-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #b9c1c9;
  margin-top: 0.2em;
  letter-spacing: 1px;
}

.slogan {
  margin: 18px 0 0 0;
  font-style: italic;
  font-size: 1.15rem;
  color: #f5c16c;
  letter-spacing: 0.5px;
}

.subtitle {
  font-size: 1.2rem;
  color: #b9c1c9;
  margin-top: 0.3em;
  margin-bottom: 0.5em;
  font-weight: 400;
  letter-spacing: 1px;
}

/* ============================================================================
   NAVIGATION
   ============================================================================ */

nav {
  margin: 30px 0 0 0;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

nav ul li {
  display: inline;
  position: relative;
}

nav ul li a {
  color: #b9c1c9;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.2s;
  padding: 8px 12px;
  display: inline-block;
}

nav ul li a.active {
  background-color: #f5c16c;
  color: #23282c;
  font-weight: 700;
  border-radius: 4px;
}

nav ul li a.active:hover {
  background-color: #f5c16c;
  color: #000;
}

nav ul li a:hover,
nav ul li .dropbtn:focus {
  color: #f5c16c;
}

/* Dropdown */
.dropdown-toggle {
  background: none;
  border: none;
  padding: 0 8px;
  color: #b9c1c9;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #23282c;
  left: -100px;
  min-width: 400px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  z-index: 1;
  border-radius: 6px;
  margin-top: 2px;
}

.dropdown-content a {
  color: #b9c1c9;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.98rem;
  border-bottom: 1px solid #181b1f;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: #181b1f;
  color: #f5c16c;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin: 0 auto 0 0;
  position: absolute;
  left: 18px;
  top: 38px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: #f5c16c;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================================
   MAIN CONTENT
   ============================================================================ */

main {
  flex: 1;
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 48px;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #f5c16c;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hero sections */
.results-hero h2,
.contact-hero h2,
.blog-hero h2,
.media-hero h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.2em;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.hero-image {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 10px auto 2em auto;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.13);
}

/* ============================================================================
   BLOG LIST STYLES
   ============================================================================ */

.blog-hero {
  text-align: center;
  margin-bottom: 2.5em;
}

.blog-container {
  max-width: 900px;
  margin: 1em auto 3em auto;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.post-card {
  background: #181b1f;
  border-radius: 14px;
  padding: 0 0 24px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-featured-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
}

.post-content {
  padding: 22px 24px 0 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 0.4em;
}

.post-card h2 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.post-card h2 a:hover {
  color: #f5c16c;
}

.post-meta {
  color: #b9c1c9;
  font-size: 0.9rem;
  margin-bottom: 1em;
}

.post-excerpt {
  color: #dbe2ea;
  margin-bottom: 1.2em;
  line-height: 1.6;
  flex: 1;
}

.read-more {
  display: inline-block;
  color: #f5c16c;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.8em;
}

.read-more:hover {
  text-decoration: underline;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 2em;
}

.pagination-button {
  background: #23282c;
  color: #dbe2ea;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.pagination-button:hover:not(:disabled) {
  background: #f5c16c;
  color: #23282c;
}

.pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================================================
   SINGLE POST STYLES
   ============================================================================ */

.featured-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 2em;
  object-fit: cover;
}

.back-to-stories {
  display: inline-block;
  margin-bottom: 18px;
  color: #f5c16c;
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.2s;
}

.back-to-stories:hover {
  color: #ffd89b;
}

.custom_footer {
  border: 1px solid #2a3038;
  padding: 18px;
  border-radius: 8px;
  margin: 32px 0;
  color: #dbe2ea;
}

.custom_footer a {
  color: #f5c16c;
}

.custom_footer a:hover {
  text-decoration: underline;
}

/* Story content styles */
.story-content {
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-content h2,
.story-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f5c16c;
}

.story-content h2:first-child,
.story-content h3:first-child {
  margin-top: 0;
}

.story-content h2 { 
  font-size: 1.75rem; 
}

.story-content h3 { 
  font-size: 1.5rem; 
}

.story-content blockquote {
  border-left: 4px solid #f5c16c;
  padding: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  background: rgba(245, 193, 108, 0.08);
  border-radius: 4px;
  color: #dbe2ea;
}

.story-content blockquote p {
  margin: 0;
  color: #dbe2ea;
}

.story-content > p:first-of-type {
  font-size: 1.2rem;
  line-height: 1.7;
}

.story-content ul,
.story-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.story-content li {
  margin-bottom: 0.5rem;
}

.story-content strong {
  font-weight: 600;
}

.story-content em {
  font-style: italic;
}

.story-content a {
  color: #f5c16c;
  text-decoration: none;
}

.story-content a:hover {
  text-decoration: underline;
}

/* ============================================================================
   SERVICES
   ============================================================================ */

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}

.service-card {
  background: #181b1f;
  border-radius: 10px;
  padding: 24px;
  flex: 1 1 260px;
  min-width: 260px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-card h3 {
  margin-top: 0;
  color: #f5c16c;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-card p {
  margin: 0;
  color: #dbe2ea;
  font-size: 1rem;
  line-height: 1.5;
}

.service-content {
  max-width: 800px;
  margin: 40px auto 40px auto;
  background: #181b1f;
  border-radius: 14px;
  padding: 36px 28px;
  color: #dbe2ea;
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}

.service-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.2em;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
}

.service-content .subtitle {
  display: block;
  font-size: 1.1rem;
  color: #f5c16c;
  font-weight: 500;
  margin-bottom: 1.2em;
  letter-spacing: 1px;
}

.service-content ul {
  color: #dbe2ea;
  padding-left: 1.2em;
  margin-bottom: 2em;
}

.service-content ul li {
  margin-bottom: 0.7em;
  line-height: 1.6;
}

.service-content .cta {
  margin: 2.5em 0 0 0;
  text-align: center;
}

.service-content .cta a {
  display: inline-block;
  background: #f5c16c;
  color: #23282c;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
}

.service-content .cta a:hover {
  background: #fff;
  color: #181b1f;
}

/* ============================================================================
   TABLES
   ============================================================================ */

table {
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
  border-collapse: collapse;
  border: 1px solid #2a3038;
}

th, td {
  padding: 12px;
  border: 1px solid #2a3038;
  text-align: left;
}

th {
  background: #181b1f;
  color: #f5c16c;
  font-weight: 600;
}

td {
  color: #dbe2ea;
}

/* ============================================================================
   UTILITIES
   ============================================================================ */

ul {
  color: #dbe2ea;
}

a.email-link {
  color: #f5c16c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

a.email-link:hover {
  color: #fff;
  text-decoration: underline;
}

.calendar-wrapper {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 10px;
}

#booking h2 {
  color: #f5c16c;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
  margin: 60px 0 0 0;
  padding: 18px 0 10px 0;
  background: #181b1f;
  color: #b9c1c9;
  text-align: center;
  font-size: 0.95rem;
}

.icons {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 38px 0 0 0;
  padding: 0;
  list-style: none;
}

.icons li a {
  font-size: 1.6rem;
  color: #b9c1c9;
  transition: color 0.2s;
}

.icons li a:hover {
  color: #f5c16c;
}


/* Book Single Page */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin: 2rem 0;
}
/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 700px) {
  h1 {
    font-size: 2rem;
  }
  
  .services {
    flex-direction: column;
    gap: 0;
  }
  
  main {
    padding: 0 6px;
  }

  .book-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .book-single {
    padding: 1rem;
  }
  
  .service-card {
    min-width: unset;
    margin-bottom: 18px;
  }
  
  .service-content {
    padding: 18px 6px;
  }
  
  .service-content h2 {
    font-size: 1.4rem;
  }
  
  .service-content h1 {
    font-size: 1.4rem;
  }
  
  header {
    padding-left: 6px;
    padding-right: 6px;
  }
  
  .hero-image {
    max-width: 100%;
    margin-bottom: 1em;
  }
  
  .post-featured-image {
    height: 120px;
  }
  
  .post-card {
    padding: 0 0 18px 0;
  }
  
  .post-card h2 {
    font-size: 1.1rem;
  }
  
  /* Mobile Navigation */
  nav {
    position: relative;
  }
  
  nav ul {
    display: none;
    flex-direction: column;
    background: #181b1f;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-bottom: 18px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.09);
    gap: 0;
  }
  
  nav ul.open {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .dropdown-content {
    position: static;
    box-shadow: none;
    min-width: 100%;
  }
  
  /* Mobile Tables */
  table, thead, tbody, th, td, tr {
    display: block;
  }
  
  thead {
    display: none;
  }
  
  tr {
    margin-bottom: 1em;
    border: 1px solid #2a3038;
    border-radius: 8px;
  }
  
  td {
    border: none;
    position: relative;
    padding-left: 50%;
  }
  
  td:before {
    position: absolute;
    left: 12px;
    content: attr(data-label);
    font-weight: bold;
    color: #f5c16c;
  }
}

/* ============================================================================
   KIDS SECTION STYLING
   ============================================================================ */

.age-badge {
        background: linear-gradient(135deg, #4A90E2 0%, #50E3C2 100%);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 700;
        display: inline-block;
        margin-right: 8px;
        box-shadow: 0 2px 6px rgba(74, 144, 226, 0.3);
    }
    
    .age-badge-small {
        background: linear-gradient(135deg, #F5A623 0%, #FF6B6B 100%);
        color: white;
        padding: 3px 10px;
        border-radius: 15px;
        font-size: 0.85rem;
        font-weight: 700;
        display: inline-block;
        margin-bottom: 8px;
        box-shadow: 0 2px 4px rgba(245, 166, 35, 0.3);
    }
    
    /* Kids card enhancements */
    .kids-card {
        border: 3px solid #4A90E2 !important;
        transition: all 0.3s ease;
    }
    
    .kids-card:hover {
        border-color: #F5A623 !important;
        transform: translateY(-5px);
        box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4) !important;
    }
    
    .kids-card .read-more {
        background: linear-gradient(90deg, #4A90E2 0%, #50E3C2 100%);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 700;
        display: inline-block;
        box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
    }
    
    .kids-card .read-more:hover {
        background: linear-gradient(90deg, #F5A623 0%, #FF6B6B 100%);
        transform: scale(1.05);
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
    }
    .language-switcher {
        position: fixed;
        top: 100px;
        right: 20px;
        background: #2a3038;
        padding: 0.75rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        z-index: 1000;
        min-width: 120px;
    }

    /* Mobile responsive */
    @media (max-width: 768px) {
        .language-switcher {
            top: 80px;
            right: 10px;
            font-size: 0.9rem;
        }
    }
    
    /* RTL support */
    [dir="rtl"] .language-switcher {
        right: auto;
        left: 20px;
    }
    
    [dir="rtl"] .back-to-stories {
        float: left;
    }
    
    [dir="rtl"] .post-meta {
        direction: rtl;
    }