/* ================================================== */
/* CSS RESET & BASE NORMALIZATION                    */
/* ================================================== */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #1C2312;
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, video {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #AA7439;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #805210;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style-position: inside;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #AA7439;
  outline-offset: 2px;
}

/* ================================================== */
/* LUXURY PREMIUM COLOR PALETTE                       */
/* ================================================== */
:root {
  --primary: #364B27;
  --primary-dark: #26381B;
  --on-primary: #FFFFFF;
  --secondary: #F4E1C8;
  --on-secondary: #252013;
  --accent: #AA7439;
  --accent-dark: #805210;
  --gold: #AA7439;
  --offwhite: #FFF9F0;
  --card-bg: #FFFFFF;
  --text-main: #222;
  --shadow: 0 4px 20px 0 rgba(54,75,39,0.07), 0 1.5px 6px 0 rgba(170,116,57,0.09);
}

/* ================================================== */
/* TYPOGRAPHY: Display + Body                         */
/* ================================================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap');

h1, .hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.14;
  margin-bottom: 12px;
  letter-spacing: -0.012em;
}
@media (min-width: 576px) {
  h1, .hero h1 { font-size: 3rem; }
}
@media (min-width: 900px) {
  h1, .hero h1 { font-size: 3.5rem; }
}
h2 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 2.1rem;
  margin-bottom: 18px;
  color: var(--primary-dark);
  letter-spacing: -0.006em;
}
h3 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
p, li, span, a, ul, ol {
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}
.hero-subheadline {
  font-size: 1.18rem;
  font-family: 'Nunito', Arial, sans-serif;
  color: var(--primary-dark);
  font-weight: 400;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

/* ================================================== */
/* LUXURY THEME: Card, Button, CTA, List Styles       */
/* ================================================== */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 18px;
  max-width: 1260px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}
.section,
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  border: 1.8px solid var(--secondary);
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(170,116,57,0.16), var(--shadow);
  border-color: var(--gold);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--offwhite);
  border-radius: 18px;
  box-shadow: var(--shadow);
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 6px solid var(--accent);
  position: relative;
}
.testimonial-card p {
  color: #1C2312;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 6px;
  word-break: break-word;
}
.testimonial-meta {
  color: var(--primary-dark);
  font-size: 0.97rem;
  opacity: 0.85;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Feature Grid and Icon Styles */
.feature-grid, .feature-list, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.feature-grid li, .feature-list li, .benefit-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  font-size: 1.07rem;
  line-height: 1.38;
}
.feature-grid img, .feature-list img, .benefit-list img {
  width: 38px; height: 38px;
  min-width: 38px;
  margin-right: 8px;
  filter: drop-shadow(0 1px 2px rgba(170,116,57,0.11));
}
.feature-descriptions {
  margin-top: 18px;
  margin-bottom: 10px;
}
.event-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.event-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0 10px 0;
  border-bottom: 1px dashed #E5D1C0;
}
.event-highlight {
  background: var(--secondary);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 12px 20px;
  margin: 15px 0 24px 0;
}
.ticketing-info {
  margin: 14px 0 0 0;
}

.quick-info, .contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
  margin: 20px 0;
}
.quick-info li, .contact-info li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.09rem;
}
.quick-info img, .contact-info img {
  width: 28px;
  height: 28px;
  min-width: 28px;
}
.team {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 900px) {
  .feature-grid, .feature-list, .benefit-list {
    gap: 16px 12px;
    flex-direction: column;
  }
  .team {
    flex-direction: column;
    gap: 22px;
  }
}

.text-section {
  margin-bottom: 12px;
}

/* ================================================== */
/* HERO SECTIONS                                      */
/* ================================================== */
.hero {
  background: linear-gradient(92deg, var(--secondary) 80%, var(--accent) 200%);
  border-bottom: 2.5px solid var(--gold);
  padding: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 60px 36px;
  min-height: 320px;
}
.hero .content-wrapper {
  text-align: center;
  max-width: 730px;
}
.hero .cta-primary {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .hero .container {
    padding-block: 38px 22px;
    min-height: 160px;
  }
  .hero .content-wrapper { padding: 0 4px; } 
  .hero h1 { font-size: 2rem; }
}

/* ================================================== */
/* BUTTONS, CTA, MICRO-INTERACTIONS                  */
/* ================================================== */
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 34px;
  border-radius: 28px;
  font-family: 'Merriweather', serif;
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  background: var(--primary);
  color: var(--on-primary);
  border: none;
  box-shadow: 0 2px 8px 0 rgba(170,116,57,0.12);
  cursor: pointer;
  position: relative;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta-primary::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0;
  transition: all 0.18s;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--accent-dark);
  box-shadow: 0 6px 16px 0 rgba(170,116,57,0.15);
  color: var(--on-primary);
}
.cta-secondary {
  background: var(--accent);
  color: var(--on-primary);
  font-family: 'Merriweather', serif;
  box-shadow: none;
  border: 1.5px solid var(--accent-dark);
  min-width: 165px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--gold);
}
button {
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.service-cta {
  margin-top: 26px;
}

/* Links in cards/sections */
.card a, .text-section a {
  color: var(--accent-dark);
  font-weight: 600;
  transition: color 0.16s;
}
.card a:hover, .text-section a:hover {
  color: var(--gold);
}

/* ================================================== */
/* HEADER & NAVIGATION                                */
/* ================================================== */
header {
  background: var(--card-bg);
  border-bottom: 1.5px solid var(--secondary);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  box-shadow: 0 2.5px 10px rgba(170,116,57,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.logo img {
  width: 142px;
  height: 44px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Nunito', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary-dark);
  font-weight: 600;
  position: relative;
  padding: 7px 1px;
  border-radius: 2px;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
  background: var(--secondary);
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-primary { display: none; }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.2rem;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 1030;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* ============================== */
/* MOBILE SLIDE-IN MENU           */
/* ============================== */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244, 225, 200, 0.95);
  box-shadow: -8px 0 28px -4px rgba(54,75,39,0.08);
  z-index: 2002;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.5,1,.15,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 18px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: var(--primary);
  margin: 0 22px 18px 0;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover {
  color: var(--accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 48px 42px 16px 40px;
  align-items: flex-end;
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--primary-dark);
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 10px;
  border-radius: 6px;
  transition: background 0.17s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--card-bg);
  background: var(--gold);
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* Hamburger Animation */
.mobile-menu, .mobile-menu.open {
  transition: transform 0.36s cubic-bezier(.5,1,.15,1), opacity 0.15s;
}

/* Overlay for mobile menu shadow/effect (optional, for desktop only) */

/* ============================== */
/* SERVICE/INFO TABLE, CARDS      */
/* ============================== */
.service-table,
ul.service-list {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
}
.service-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #f0e5d6;
  padding: 14px 0 12px 0;
  font-size: 1.07rem;
}
.service-list li:last-child {
  border-bottom: 0;
}
.service-list b {
  color: var(--primary-dark);
}
.service-list span {
  color: var(--accent-dark);
  font-weight: bold;
  font-size: 1.06rem;
  letter-spacing: 0.016em;
}

/* Cards for shop, products, events, etc */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

/* ----------------*/
/* FOOTER          */
/* ----------------*/
footer {
  background: var(--primary);
  color: var(--on-primary);
  padding: 38px 0 16px 0;
  border-top: 2.5px solid var(--gold);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--on-primary);
  font-family: 'Nunito', Arial, sans-serif;
  opacity: 0.85;
  font-size: 1rem;
  padding: 2px 6px;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--gold);
}
.footer-contact {
  color: var(--secondary);
  font-size: 1.02rem;
  opacity: 1;
  text-align: center;
}
.footer-copy {
  font-size: 0.98rem;
  color: #F2E4CE;
  text-align: center;
  opacity: 0.65;
}
@media (max-width: 600px) {
  footer .container {
    gap: 16px;
  }
  .footer-nav {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
}

/* ================================================== */
/* COOKIE CONSENT BANNER & MODAL                      */
/* ================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--offwhite);
  border-top: 2.5px solid var(--gold);
  box-shadow: 0 -2px 20px rgba(170,116,57,0.13);
  z-index: 4000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 22px 20px;
  gap: 20px;
  font-size: 1rem;
  transition: transform 0.33s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  transition: transform 0.33s;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
}
.cookie-consent-banner button {
  border-radius: 22px;
  padding: 9px 20px;
  margin: 0 2px;
  font-size: 1rem;
  font-family: 'Nunito', Arial, sans-serif;
  font-weight: 700;
  border: none;
  background: var(--primary);
  color: var(--on-primary);
  transition: background 0.15s, color 0.12s;
}
.cookie-consent-banner .cookie-settings {
  background: var(--accent);
  color: var(--on-primary);
  border: 1.4px solid var(--gold);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--accent-dark);
  color: var(--on-primary);
}
.cookie-consent-banner .cookie-settings:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(54,75,39,0.28);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 38px 22px 28px 22px;
  box-shadow: 0 16px 44px -10px rgba(170,116,57,0.23);
  max-width: 450px;
  width: 98vw;
  color: var(--text-main);
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.42rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: 'Merriweather', serif;
}
.cookie-modal-content ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal-content input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
}
.cookie-modal-content .modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
}
.cookie-modal-content .modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--accent-dark);
  position: absolute;
  right: 14px; top: 12px;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-content .modal-close:hover {
  color: var(--primary);
}

/* ================================================== */
/* RESPONSIVENESS & FLEX ADAPTATIONS                  */
/* ================================================== */
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { display: none; }
}
@media (max-width: 768px) {
  .container {
    padding-inline: 8px;
  }
  h1, .hero h1 { font-size: 1.54rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.10rem; }
  .section, main section {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .card {
    padding: 18px 10px;
  }
  .card-container, .content-grid, .feature-grid, .feature-list, .benefit-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 18px 6px;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .footer-contact, .footer-copy {
    font-size: 0.89rem;
  }
  .section, main section {
    margin-bottom: 22px;
    padding: 16px 2px;
  }
  .feature-grid img, .feature-list img {
    width: 28px; height: 28px;
    min-width: 28px;
  }
  .logo img {
    width: 110px;
    height: 38px;
  }
  .cta-primary, .cta-secondary {
    padding: 11px 18px;
    font-size: 1rem;
    min-width: 125px;
  }
}

/* ================================================== */
/* MICRO-INTERACTIONS, EFFECTS                        */
/* ================================================== */
.card, .testimonial-card, .feature-item, .cta-primary, .cta-secondary, .mobile-menu, .cookie-consent-banner, .cookie-modal-content {
  transition: box-shadow 0.18s, border-color 0.12s, background 0.16s, color 0.12s, transform 0.20s;
}
.card:active, .cta-primary:active, .cta-secondary:active {
  transform: translateY(1.5px) scale(0.99);
}

/* Subtle card top accent for premium style */
.card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 22px;
  width: 34px; height: 4.5px;
  border-radius: 2.5px;
  background: var(--gold);
  opacity: 0.38;
}

/* Hide before on mobile */
@media (max-width:600px){ .card::before{ display:none; } }

/* ================================================== */
/* ACCESSIBILITY                                      */
/* ================================================== */
::selection {
  background: var(--gold);
  color: var(--on-primary);
}

.footer-contact span {
  color: white;
}

/* ================================================== */
/* END ALL                                            */
/* ================================================== */
