/* --- CSS RESET & BASE TYPOGRAPHY --- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #17507A 0%, #F5A623 100%);
  color: #222;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #17507A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5A623;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #17507A;
  margin-bottom: 12px;
  font-weight: 700;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem;  margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.9rem; font-weight: 600; }
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong { font-weight: 700; }
em, i { font-style: italic; }

/* --- LAYOUT UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(23,80,122,0.08);
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 10px 30px rgba(23,80,122,0.16);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(23,80,122,0.04);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 20px;
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #17507A;
  font-size: 1rem;
  padding: 10px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg,#F5A623 0%,#17507A 100%);
  opacity: 0;
  transition: opacity 0.2s;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  opacity: 1;
}

.cta-btn {
  background: linear-gradient(90deg, #F5A623 0%, #17507A 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  margin-left: 10px;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(23,80,122,0.12);
  transition: background 0.25s, box-shadow 0.2s, color 0.2s;
  display: inline-block;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #17507A 0%, #F5A623 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(23,80,122,0.24);
}

/* --- HERO SECTION --- */
.hero {
  background: linear-gradient(120deg,#17507A 0%,#F5A623 100%);
  color: #fff;
  border-radius: 0 0 60px 60px;
  margin-bottom: 60px;
  padding: 70px 0 50px 0;
}
.hero h1, .hero p {
  color: #fff;
}
.hero .cta-btn {
  background: #fff;
  color: #17507A;
  box-shadow: 0 4px 14px rgba(23,80,122,0.12);
}
.hero .cta-btn:hover {
  background: #F5A623;
  color: #fff;
}

/* --- FEATURE CARDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(23,80,122,0.14);
  padding: 28px 24px;
  flex: 1 1 240px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(23,80,122,0.22);
}

/* --- CARD LAYOUTS --- */
.inspiration-snippets, .destination-grid, .dish-grid, .guide-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.inspiration-snippets article, .story-highlights article, .dish-grid > div, .destination-grid > div, .guide-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(23,80,122,0.09);
  padding: 24px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  transition: box-shadow 0.2s;
}
.inspiration-snippets article:hover, .dish-grid > div:hover, .destination-grid > div:hover, .guide-grid > div:hover {
  box-shadow: 0 8px 20px rgba(23,80,122,0.14);
}

/* --- TAGS & FILTERS --- */
.tags, .filters, .tip-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 24px;
}
.tags span, .filters span, .tip-categories span {
  background: #F5A623;
  color: #fff;
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.97em;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.2s, color 0.2s;
}
.filters strong, .tip-categories strong { color: #222; font-weight: 600; margin-right: 6px; }

.filters span:hover, .filters span.selected {
  background: #17507A;
  color: #fff;
  cursor: pointer;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(23,80,122,0.08);
  margin-bottom: 24px;
  font-size: 1.07rem;
  color: #222 !important;
}
.testimonial-card p {
  color: #222;
  margin: 0 8px 0 0;
  flex: 1;
  font-size: 1.08em;
}
.testimonial-card span {
  font-weight: 600;
  color: #17507A;
  margin-left: 0;
  margin-right: 12px;
}
.testimonial-card img {
  height: 20px;
  width: 20px;
}

/* --- NEWSLETTER --- */
.newsletter-benefits ul {
  margin-left: 24px;
  margin-bottom: 12px;
}
.newsletter-signup {
  padding: 16px 0 22px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.newsletter-signup p {
  color: #17507A;
  font-size: 1.09rem;
  margin-bottom: 0;
}

/* --- FOOTER --- */
footer {
  background: #17507A;
  color: #fff;
  border-radius: 44px 44px 0 0;
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 28px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 16px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.87;
  transition: opacity 0.18s, color 0.2s;
}
.footer-nav nav a:hover, .footer-nav nav a:focus { color: #F5A623; opacity: 1; }
.contact-shortinfo {
  font-size: 0.96rem;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-shortinfo img {
  height: 16px;
  width: 16px;
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 2px;
}
.social-media-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-media-icons img {
  height: 24px;
  width: 24px;
  opacity: 0.85;
  transition: opacity 0.22s;
  cursor: pointer;
}
.social-media-icons img:hover { opacity: 1; }

/* --- FORM CONTROLS --- */
input, textarea, select {
  font-family: inherit;
  padding: 12px 14px;
  border: 1px solid #d7e2ef;
  background: #f9fafb;
  border-radius: 9px;
  margin-bottom: 18px;
  font-size: 1rem;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #17507A;
  outline: none;
  background: #fff;
}
label { display: block; margin-bottom: 8px; color: #17507A; font-weight: 600; font-size: 1em; }

/* --- BLOCKQUOTE, ACCORDION, TIPS --- */
blockquote {
  background: #f8fafc;
  border-left: 4px solid #F5A623;
  padding: 16px 28px;
  border-radius: 11px;
  margin-bottom: 18px;
  color: #17507A;
  font-size: 1.08rem;
  font-style: italic;
}

.faq-accordion h3 {
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #17507A;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 5px;
  transition: background 0.16s;
}
.faq-accordion h3:hover { background: #f2f8fc; }
.faq-accordion p {
  background: #fff;
  margin-bottom: 10px;
  border-radius: 0 0 9px 9px;
  padding: 12px 16px 14px 20px;
  color: #222;
}

.quick-tips {
  background: #f7f7fd;
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
  color: #17507A;
}
.quick-tips h4 {
  color: #F5A623;
  margin-bottom: 8px;
}

/* --- SPECIALS (e.g. Success, Highlighted) --- */
.success {
  background: linear-gradient(110deg, #F5A623 0%, #17507A 100%);
  color: #fff;
  border-radius: 0 0 54px 54px;
  padding: 64px 0 54px 0;
}
.success h1, .success p { color: #fff; }

.highlighted-location, .featured-dish {
  background: #fffbea;
  border: 1.5px solid #F5A623;
  border-radius: 13px;
  padding: 26px 20px;
  margin-top: 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px rgba(245,166,35,0.09);
  color: #17507A;
}

/* --- MOBILE BURGER & MENU --- */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #17507A;
  font-size: 2rem;
  margin-left: 14px;
  display: none;
  z-index: 53;
  line-height: 1;
}
@media (max-width: 980px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg,#17507A 30%, #F5A623 100%);
  color: #fff;
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.85,.01,.19,.99), opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 18px;
  border: none;
  align-self: flex-end;
  margin-bottom: 18px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding-left: 40px;
  padding-right: 30px;
  padding-top: 12px;
  font-size: 1.22rem;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 0;
  opacity: 0.95;
  transition: color 0.22s, opacity 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F5A623;
  opacity: 1;
}
@media (max-width: 980px) {
  .cta-btn { display: none; }
}

/* --- RESPONSIVE --- */
@media (max-width: 980px) {
  .feature-grid, .card-container, .content-grid, .inspiration-snippets, .destination-grid, .dish-grid, .guide-grid, .newsletter-signup, .footer-nav {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .hero { padding: 40px 0 30px 0; }
  .section { padding: 28px 8px; }
  footer { border-radius: 34px 34px 0 0; margin-top: 30px; }
  .social-media-icons img { height: 26px; width: 26px; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper { gap: 16px; }
  .feature-grid, .card-container, .content-grid, .inspiration-snippets, .destination-grid, .dish-grid, .guide-grid {
    gap: 16px;
  }
  .newsletter-signup { flex-direction: column; gap: 12px; align-items: flex-start; }
}
@media (max-width: 640px) {
  header .container { flex-direction: row; gap: 8px; min-height: 56px; }
  .footer-nav { gap: 14px; }
  .social-media-icons { gap: 10px; }
  footer { padding-top: 20px; padding-bottom: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
}

.text-image-section { flex-direction: column; }
@media (min-width: 769px) {
  .text-image-section { flex-direction: row; align-items: center; }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  color: #17507A;
  box-shadow: 0 -2px 24px rgba(23,80,122,0.11);
  padding: 18px 8px 18px 24px;
  z-index: 120;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.03em;
  transition: transform 0.25s, opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(120%); opacity: 0; pointer-events: none;
}
.cookie-banner .cookie-btn {
  background: #F5A623;
  color: #fff;
  border: none;
  border-radius: 23px;
  padding: 7px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 1em;
  font-size: 1em;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 6px rgba(245,166,35,0.07);
}
.cookie-banner .cookie-btn.settings {
  background: #17507A;
  margin-left: 0.5em;
}
.cookie-banner .cookie-btn.reject {
  background: #ddd;
  color: #17507A;
  margin-left: 0.5em;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #17507A;
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 4px;
    font-size: 0.98em;
  }
  .cookie-banner .cookie-btn { margin-left: 0; margin-top: 8px; }
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(23,80,122,0.66);
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.22s;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #17507A;
  border-radius: 24px;
  padding: 36px 28px 24px 28px;
  box-shadow: 0 8px 32px rgba(23,80,122,0.22);
  min-width: 300px;
  max-width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookiePopin 0.45s cubic-bezier(.85,.01,.19,.99);
}
@keyframes cookiePopin {
  0% {transform: scale(0.85); opacity:0;}
  80%{transform: scale(1.05);}
  100%{transform: scale(1); opacity:1;}
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #17507A;
  font-size: 1.22rem;
}
.cookie-modal-category {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eee;
  font-size: 1.04em;
}
.cookie-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.cookie-toggle label {
  font-size: 1em;
  margin: 0 0 0 12px;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 41px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ddd;
  transition: .2s;
  border-radius: 22px;
}
.cookie-switch input:checked + .cookie-slider {
  background: #F5A623;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 1px 2.5px #8882;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #F5A623;
  color: #fff;
  border-radius: 18px;
  padding: 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  font-size: 1em;
  transition: background 0.13s, color 0.13s;
  cursor: pointer;
}
.cookie-modal button.cancel-btn {
  background: #ddd;
  color: #17507A;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #17507A;
  color: #fff;
}

@media (max-width: 520px) {
  .cookie-modal { padding: 22px 6px 14px 6px; }
  .cookie-modal-buttons { flex-direction: column; gap: 8px; }
}

/* --- UTILITY HINTS --- */
.visually-hidden {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px;
}

/*********** OPTIONAL ANIMATIONS AND EFFECTS ******/
.cta-btn, .cookie-banner .cookie-btn, .cookie-modal button {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.card, .feature-grid > div, .inspiration-snippets article, .dish-grid > div, .destination-grid > div, .guide-grid > div {
  transition: box-shadow 0.24s, transform 0.22s;
}
.card:hover, .feature-grid > div:hover, .inspiration-snippets article:hover,
.dish-grid > div:hover, .destination-grid > div:hover, .guide-grid > div:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 10px 32px rgba(23,80,122,0.13);
}

/****** MISC RESPONSIVENESS ******/
@media (max-width: 400px) {
  h1, h2, h3 { font-size: 1.02rem; }
  .cookie-banner { font-size: 0.97em; }
}

/***** END OF STYLE.CSS *****/