/* =========================
   CSS RESET & NORMALIZE
   ========================= */
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;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  background: #fff;
  color: #283744;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  color: #A15641;
  text-decoration: none;
  background: transparent;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #e7b856;
  text-decoration: underline;
}
strong {
  font-weight: 600;
}

/* =========================
   FONTS (Premium/Luxury)
   ========================= */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900|Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #283744;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
}

.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.2rem;
  color: #6e7a8a;
  margin-bottom: 28px;
}

p {
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #303841;
}

/* =========================
   BRAND COLORS & LUXURY VARIANTS
   ========================= */
:root {
  --color-primary: #283744;
  --color-secondary: #A15641;
  --color-accent: #F6E8CD;
  --color-gold: #e7b856;
  --color-light: #fff;
  --color-dark: #23272c;
  --color-grey: #edf1f7;
  --color-shadow: rgba(40,55,68,0.09);
  --radius-lg: 18px;
  --radius: 10px;
  --radius-sm: 5px;
  --shadow-md: 0 4px 24px rgba(40,55,68,0.07), 0 1.5px 6px rgba(161,86,65,0.04);
  --shadow-lg: 0 8px 32px rgba(40,55,68,0.10);
}

/* =========================
   GLOBAL CONTAINER/CARDS
   ========================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 28px 10px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  position: relative;
  padding: 26px 26px 22px 26px;
  transition: box-shadow 0.25s;
  border: 1px solid #ece4d5;
}
.card:hover {
  box-shadow: 0 2px 36px var(--color-shadow);
  border-color: var(--color-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;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 20px 26px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-gold);
  transition: border-color 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-lg);
}
.customer-name {
  font-size: 1rem;
  font-style: italic;
  font-family: 'Merriweather', serif;
  color: #a15641;
  margin-top: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================
   HERO/BANNER SECTIONS
   ======================== */
.hero {
  background: linear-gradient(120deg, #fff 70%, var(--color-accent) 100%);
  padding: 50px 0 50px 0;
  border-bottom: 2px solid var(--color-accent);
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0;
  }
}

/* ========================
   FEATURE GRID/LISTS
   ======================== */
.features, .feature-grid {
  width: 100%;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  flex: 1 1 260px;
  min-width: 240px;
  padding: 26px 20px 18px 20px;
  text-align: left;
  border-left: 6px solid var(--color-gold);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.feature-grid li:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

/* =========================
   TESTIMONIALS
   ========================= */
.testimonials, .testimonial-list {
  width: 100%;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .testimonial-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* =========================
   CONTACT/PAGE SECTIONS
   ========================= */
.contact {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-details {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 24px 16px 24px;
  margin: 16px 0 24px 0;
  font-size: 1rem;
}
.contact-details a {
  color: var(--color-secondary);
  font-weight: 500;
}

/* =========================
   CTA BUTTONS
   ========================= */
.cta {
  display: inline-block;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: 0.05em;
  padding: 14px 38px;
  border-radius: 30px;
  border: none;
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(161,86,65,0.10);
  cursor: pointer;
  text-align: center;
  transition: background 0.20s, color 0.18s, box-shadow 0.18s;
  margin-top: 10px;
  margin-bottom: 10px;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: var(--color-primary);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  box-shadow: 0 4px 16px rgba(40,55,68,0.12);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(161,86,65,0.15);
}
.cta:hover, .cta:focus {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 4px 28px rgba(40,55,68,0.16);
}

/* =========================
   NAVIGATION (DESKTOP)
   ========================= */
header {
  background: #fff;
  border-bottom: 2px solid var(--color-accent);
  position: sticky;
  top: 0;
  z-index: 20;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0 14px 0;
  position: relative;
}
.main-navigation .logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
  font-size: 1.5rem;
}
.main-navigation ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-left: 12px;
}
.main-navigation ul li a {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-navigation ul li a:hover, .main-navigation ul li a:focus {
  background: var(--color-accent);
  color: var(--color-secondary);
}
.main-navigation .cta.primary {
  margin-left: 30px;
}

/* =========================
   MOBILE NAVIGATION
   ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 16px;
  position: relative;
  z-index: 31;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,55,68,0.84);
  z-index: 1001;
  animation: mobileMenuSlideIn 0.32s cubic-bezier(.7,.08,.42,1.13) forwards;
}
@keyframes mobileMenuSlideIn {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
@keyframes mobileMenuSlideOut {
  0% { transform: translateX(0);   opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  color: var(--color-gold);
  background: none;
  border: none;
  margin: 25px 23px 0 0;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.12s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding: 48px 28px 0 42px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  width: 100%;
  padding: 12px 0;
  transition: background 0.17s, color 0.17s;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

@media (max-width: 1020px) {
  .main-navigation ul {
    gap: 10px;
  }
  .main-navigation .cta.primary {
    margin-left: 10px;
    font-size: 1rem;
    padding: 11px 19px;
  }
}
@media (max-width: 920px) {
  .main-navigation ul {
    display: none;
  }
  .main-navigation .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  padding: 0;
  margin: 0;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-navigation,
.footer-links {
  flex: 1 1 180px;
}
.footer-navigation ul,
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-navigation ul li a,
.footer-links ul li a {
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
}
.footer-navigation ul li a:hover,
.footer-links ul li a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-brand img {
  width: 64px;
  height: auto;
  margin-bottom: 2px;
}
.footer-tagline {
  font-size: 1.08rem;
  font-family: 'Merriweather', serif;
  color: #fff3e0;
  margin-top: 7px;
}
.footer-legal {
  width: 100%;
  margin-top: 24px;
  text-align: right;
  font-size: 0.93rem;
  color: #f6e8cd;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-legal {
    text-align: left;
    margin-top: 18px;
  }
}
footer a {
  color: #fff;
  transition: color 0.15s;
  font-weight: 500;
}
footer a:focus, footer a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

/* =========================
   SECTIONS/SPECIALS
   ========================= */
.about-short, .brand-story, .team, .why-choose, .how-it-works, .box-features, .pricing-themes, .club-features, .gift-consulting, .event-listings, .event-highlights, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .thank-you, .cta-final {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px 0 var(--color-shadow);
}
@media (max-width: 768px) {
  .about-short, .brand-story, .team, .why-choose, .how-it-works, .box-features, .pricing-themes, .club-features, .gift-consulting, .event-listings, .event-highlights, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .thank-you, .cta-final {
    margin-bottom: 32px;
    padding: 26px 10px;
  }
}

/* =========================
   TABLES, LISTS, ETC
   ========================= */
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 10px;
  border-bottom: 1px solid var(--color-accent);
}
ol {
  margin-left: 20px;
  margin-bottom: 18px;
  color: var(--color-secondary);
  font-weight: 500;
  font-size: 1.07rem;
}
ol li {
  margin-bottom: 8px;
}
ul {
  margin-left: 14px;
  margin-bottom: 14px;
}
ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: #283744;
}
ul li:before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-size: 1.4em;
  top: -3px;
}

/* =========================
   FORM ELEMENTS (for future expansion)
   ========================= */
input, select, textarea, button {
  font-family: 'Roboto', Arial, sans-serif;
}
input, select, textarea {
  background: #fff;
  border: 1px solid #c7b288;
  border-radius: 5px;
  padding: 12px;
  font-size: 1rem;
  margin-bottom: 22px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 1px 5px rgba(40,55,68,0.04);
  transition: border-color 0.16s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}
button {
  cursor: pointer;
}
label {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* =========================
   RESPONSIVE ADJUSTMENTS
   ========================= */
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .card-container, .feature-grid, .testimonial-list, .content-grid {
    flex-direction: column;
    gap: 18px !important;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .main-navigation ul,
  .main-navigation .cta.primary {
    display: none !important;
  }
  .card, .testimonial-card, .feature-grid li {
    min-width: unset !important;
    max-width: 100% !important;
  }
  .about-short, .brand-story, .team, .why-choose, .how-it-works, .box-features, .pricing-themes, .club-features, .gift-consulting, .event-listings, .event-highlights, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .thank-you, .cta-final {
    border-radius: var(--radius);
    padding: 20px 4px;
    margin-bottom: 22px;
  }
  .footer-brand {
    align-items: flex-start;
    text-align: left;
  }
}

/* =============================
   ANIMATIONS & MICROINTERACTIONS
   ============================= */
.card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.17s, transform 0.18s;
}
.card:hover, .feature-grid li:hover, .testimonial-card:hover {
  transform: translateY(-8px) scale(1.017);
  box-shadow: 0 8px 32px rgba(161,86,65,0.15);
}
.cta, .main-navigation ul li a, .mobile-nav a {
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: rgba(246,232,205,0.98);
  box-shadow: 0 -3px 22px 2px rgba(40,55,68,0.07);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
  z-index: 1500;
  font-size: 1.02rem;
  animation: bannerAppear 0.32s cubic-bezier(.7,.08,.42,1.13) 1;
}
@keyframes bannerAppear {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: var(--color-primary);
}
.cookie-banner .cookie-btn {
  margin-left: 10px;
  margin-right: 5px;
  padding: 10px 22px;
  border-radius: 22px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(161,86,65,0.06);
  font-size: 1rem;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
  margin-right: 0;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-secondary);
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .cookie-btn:hover, 
.cookie-banner .cookie-btn:focus {
  background: var(--color-primary);
  color: var(--color-gold);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 12px;
    font-size: 0.97rem;
    gap: 10px;
  }
  .cookie-banner .cookie-btn {
    width: 100%;
    margin: 6px 0 0 0;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,55,68,0.85);
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.26s cubic-bezier(.7,.08,.42,1.13) 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 92vw;
  padding: 32px 30px 22px 30px;
  position: relative;
  z-index: 2111;
  animation: modalPopIn 0.32s cubic-bezier(.7,.08,.42,1.13) 1;
}
@keyframes modalPopIn {
  from { transform: scale(0.97) translateY(28px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  margin-bottom: 14px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-gold);
  transform: scale(1.18);
  margin-right: 7px;
}
.cookie-modal .modal-btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .modal-btn-row .cookie-btn {
  margin: 0 !important;
  min-width: 90px;
  text-align: center;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-gold);
  cursor: pointer;
  z-index: 2201;
}
.cookie-modal .cookie-close:hover {
  color: var(--color-secondary);
}
.cookie-modal .essential-label {
  font-size: 1.03rem;
  color: #a15641;
}
.cookie-modal .cookie-categories {
  margin-top: 15px;
  margin-bottom: 8px;
}

@media (max-width: 520px) {
  .cookie-modal { padding: 18px 6vw 18px 6vw; }
  .cookie-modal h2 { font-size: 1.05rem; }
}

/* =========================
   UTILITY CLASSES
   ========================= */
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }
.mt-2 { margin-top: 2px!important; }
.mt-6 { margin-top: 6px!important; }
.mb-6 { margin-bottom: 6px!important; }
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.text-center { text-align: center!important; }
.text-left { text-align: left!important; }
.w-100 { width: 100%!important; }

/* =========================
   PRINT STYLES
   ========================= */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #181818 !important; }
  section, .container, .content-wrapper { box-shadow: none !important; background: #fff !important; }
}

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

