/* Aurora Blend — Futuristic Tech Wedding CSS Style */
/* RESET AND 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,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #22232E;
  color: #E5E9F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  background: linear-gradient(130deg,#3B4252 40%,#22232E 100%) no-repeat;
  color: #E5E9F0;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  list-style: none;
}
a {
  color: #CFA8B5;
  text-decoration: none;
  transition: color 0.24s;
}
a:hover, a:focus {
  color: #E5E9F0;
}
strong, b {
  font-weight: 700;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: #E5E9F0;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.6rem; letter-spacing: -0.03em; margin-bottom: 24px; }
h2 { font-size: 2.1rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }

p, li {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #E5E9F0;
  font-size: 1rem;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
}

/* BASIC CONTAINERS */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: rgba(40,43,54,0.87);
  border-radius: 20px;
  box-shadow: 0 8px 24px 0 rgba(47,48,59,0.09), 0 1.5px 4px 0 #CFA8B550;
  padding: 32px 24px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* SECTION LAYOUTS */
section {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #272934;
  border-radius: 18px;
  box-shadow: 0 2px 14px #CFA8B532, 0 1px 3px #1c1e29;
  transition: box-shadow 0.28s, transform 0.28s;
  padding: 28px 20px;
  min-width: 240px;
  flex: 1 1 330px;
}
.card:hover {
  box-shadow: 0 8px 32px #CFA8B570, 0 2px 8px #CFA8B560;
  transform: translateY(-2px) scale(1.03);
}

.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F9FAFB;
  color: #272934;
  border-radius: 16px;
  box-shadow: 0 2px 12px #CFA8B522, 0 2px 5px #e5e9f033;
  border-left: 4px solid #CFA8B5;
  max-width: 620px;
}
.testimonial-card p, .testimonial-card span {
  color: #1a1f28;
}
.testimonial-card div img {
  width: 24px; height: 24px; margin-right: 2px;
  filter: drop-shadow(0 0 5px #CFA8B5); opacity: .92;
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-list > div {
  background: #22232E;
  border: 1.5px solid #CFA8B526;
  border-radius: 13px;
  box-shadow: 0 2px 10px #CFA8B522;
  padding: 18px 20px;
}

.info-box {
  background: #3B4252;
  color: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  margin-top: 16px;
  font-size: 1rem;
  box-shadow: 0 1px 5px #CFA8B528;
}

@media (max-width: 900px) {
  .container { max-width: 98vw; }
}
@media (max-width: 768px) {
  .content-wrapper { padding: 22px 8px; }
  .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .card { min-width: 90%; }
  .testimonial-card { max-width: 100%; }
}


/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: rgba(25, 27, 38, .97);
  border-bottom: 2px solid #CFA8B570;
  position: sticky;
  top: 0; z-index: 20;
  box-shadow: 0 2px 10px #CFA8B511;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 10px 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #CFA8B5;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 7px;
  position: relative;
  transition: background 0.22s, color 0.27s, box-shadow 0.14s;
}
header nav a.cta.primary {
  background: #CFA8B5;
  color: #3B4252;
  font-weight: 700;
  box-shadow: 0 0 13px #CFA8B560;
  border-radius: 20px;
}
header nav a.cta.primary:hover, header nav a.cta.primary:focus {
  background: #E5E9F0;
  color: #22232E;
  box-shadow: 0 3px 20px #CFA8B590;
}
header nav a:hover, header nav a:focus {
  background: #CFA8B516;
  color: #fff;
}

header img {
  height: 44px;
  width: auto;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #CFA8B5;
  cursor: pointer;
  margin-left: 18px;
  z-index: 24;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #fff;
}
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,36,51,0.99);
  z-index: 1001;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.5,1.14,.59,1.07), opacity 0.24s;
  opacity: 0.98;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #CFA8B5;
  font-size: 2.4rem;
  position: absolute;
  top: 20px;
  right: 28px;
  cursor: pointer;
  z-index: 1011;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #fff; }
.mobile-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-left: 28px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: #E5E9F0;
  padding: 14px 0;
  border-radius: 8px;
  width: 90vw;
  transition: background 0.21s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CFA8B516;
  color: #CFA8B5;
}
@media (max-width: 560px) {
  .mobile-nav a { font-size:1.09rem; padding:12px 0;}
  .mobile-menu-close { top: 14px; right: 14px; }
  .mobile-nav { padding-left: 12px; }
}


/* BUTTONS */
.cta, .primary, button, input[type=button], input[type=submit] {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  outline: none;
  border-radius: 24px;
  background: #CFA8B5;
  color: #3B4252;
  cursor: pointer;
  padding: 12px 28px;
  font-size: 1.1rem;
  margin-top: 14px;
  margin-bottom: 4px;
  box-shadow: 0 1px 10px #CFA8B530;
  transition: background 0.23s, color 0.23s, transform 0.18s, box-shadow 0.18s;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta.primary, .primary {
  background: #CFA8B5;
  color: #22232E;
}
.cta:after, .primary:after {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right:0; bottom:0;
  border-radius: 24px;
  box-shadow: 0 0 16px #CFA8B590, 0 0 6px #CFA8B560;
  opacity: 0.18;
  transition: opacity 0.22s;
  z-index: -1;
}
.cta:hover, .primary:hover, .cta:focus, .primary:focus, button:hover, button:focus, input[type=button]:hover, input[type=submit]:hover {
  background: #E5E9F0;
  color: #1D1B1F;
  transform: translateY(-3px) scale(1.035);
  box-shadow: 0 4px 26px #CFA8B5aa, 0 0 11px #fff4;
}

/* ACCENT LINKS */
a.cta { display: inline-block; }
a.cta.primary {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* FORMS (if any) */
input, textarea, select {
  font-family: inherit;
  border-radius: 6px;
  border: 1.5px solid #CFA8B533;
  background: #22232E;
  color: #E5E9F0;
  padding: 14px 12px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #CFA8B5;
  outline: none;
}

/* ICONS */
li img, .feature-item img {
  width: 28px;
  height: 28px;
  margin-right: 9px;
  vertical-align: middle;
  filter: drop-shadow(0 0 5px #CFA8B5AA) brightness(1.08);
}

/* FOOTER */
footer {
  background: #23242C;
  color: #E5E9F0;
  padding: 42px 0 16px 0;
  border-top: 2.5px solid #CFA8B530;
  width: 100%;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 11px;
  flex-wrap: wrap;
}
footer nav a {
  color: #CFA8B5;
  font-size: 0.93rem;
  transition: color 0.18s;
}
footer nav a:hover { color: #fff; }
footer img {
  width: 66px;
  height: auto;
}
.text-section p {
  color: #CFA8B5;
  font-size: 0.97rem;
  text-align: center;
  margin-bottom: 6px;
}

@media (max-width: 600px) {
  footer .container, footer nav {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }
  footer img { width: 48px; }
}

/* TABLES (for legal pages) */
table {width:100%;border-collapse:separate;border-spacing:0;margin:25px 0;background:#23242C;box-shadow:0 2px 14px #CFA8B522;}
th,td{padding:11px 10px;text-align:left;}
th{background:#3B4252;color:#CFA8B5;}
td{border-top:1px solid #3B4252;}

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #22232E;
  color: #E5E9F0;
  width: 100vw;
  z-index: 2002;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -2px 13px #CFA8B540;
  padding: 22px 16px;
  min-height: 82px;
  opacity: 1;
  transition: opacity 0.25s, transform 0.25s;
}
#cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(30px); }
#cookie-banner .cookie-content {
  flex: 1 0 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-left: 32px;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; padding: 13px 7px 18px 7px; }
  #cookie-banner .cookie-actions { margin-left: 0; margin-top: 11px; flex-wrap: wrap; }
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary, .cookie-btn-settings {
  border-radius: 20px;
  border: none;
  font-family: inherit;
  font-weight: 600;
  font-size: 1em;
  padding: 11px 22px;
  cursor: pointer;
  margin-right: 2px;
  transition: background 0.19s, color 0.18s, transform 0.15s;
}
.cookie-btn-primary {
  background: #CFA8B5;
  color: #23242C;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: #E5E9F0; color: #23242C;
  transform: translateY(-1.5px) scale(1.02);
}
.cookie-btn-secondary {
  background: #E5E9F0;
  color: #3B4252;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #CFA8B5;
  color: #1D1B1F;
}
.cookie-btn-settings {
  background: transparent;
  border: 1.5px solid #CFA8B5;
  color: #CFA8B5;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #CFA8B5;
  color: #3B4252;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;left: 0;width: 100vw;height: 100vh;
  background: rgba(38,40,55,0.98);
  z-index: 2008;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
#cookie-modal.visible { display: flex; }
@keyframes fadeIn { from{ opacity:0; } to { opacity: 1; } }
.cookie-modal-content {
  background: #292B36;
  border-radius: 22px;
  max-width: 425px;
  width: 98vw;
  padding: 36px 26px 26px 26px;
  box-shadow: 0 4px 28px #CFA8B580;
  color: #E5E9F0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #CFA8B5;
  position: absolute;
  right: 14px; top: 12px;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover { color: #fff; }
.cookie-modal-content h2 {
  font-size: 1.36rem;
  margin-bottom: 7px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.06rem;
  color: #CFA8B5;
  cursor: pointer;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.switch input { display: none; }
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #CFA8B56a;
  border-radius: 22px;
  transition: .2s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: .2s;
}
.switch input:checked + .slider {
  background: #CFA8B5;
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}

.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 17px;
}
@media (max-width: 480px) {
  .cookie-modal-content { padding: 18px 6px 18px 6px;}
}

/* ANIMATIONS, MICRO-INTERACTIONS, TRANSITIONS */
button,.cta,.primary,.cookie-btn,.cookie-btn-primary {
  transition: background 0.21s, color 0.18s, transform 0.12s, box-shadow 0.16s;
}
.card,.testimonial-card {
  transition: box-shadow 0.25s, transform 0.23s;
}
.card:hover,.testimonial-card:hover {
  box-shadow: 0 6px 34px #CFA8B570, 0 4px 13px #32242233;
  transform: translateY(-2px) scale(1.02);
}
a.cta.primary:hover { box-shadow: 0 8px 24px #CFA8B560, 0 1.5px 13px #fff4; }

/* VISUALS & EFFECTS */
h1, h2, h3, h4 {
  text-shadow: 0 2px 12px #CFA8B540, 0 1px 3px #3B425230;
}
.content-wrapper,
.card {
  border: 1.5px solid #CFA8B517;
}

/* VISUAL ACCENTS */
section, .card, .content-wrapper {
  position: relative;
}
section:before, .content-wrapper:before {
  content: '';
  position: absolute;
  top: 4px; right: 4px; width: 36px; height: 36px;
  border-radius: 50%;
  box-shadow: 0 0 18px 7px #CFA8B570;
  opacity: 0.13;
}
@media (max-width:700px){
  section:before, .content-wrapper:before{display:none;}
}

/* SCROLL BAR STYLE */
::-webkit-scrollbar {
  width: 10px;
  background: #21222B;
}
::-webkit-scrollbar-thumb {
  background: #CFA8B533;
  border-radius: 8px;
  border: 2px solid #22232E;
}
::-webkit-scrollbar-thumb:hover {
  background: #CFA8B560;
}

/* MISC ELEMENTS (INFO, BADGES) */
.badge {
  display: inline-block;
  background: #E5E9F0;
  color: #3B4252;
  border-radius: 8px;
  padding: 2px 10px;
  font-size: 0.93rem;
  font-weight: 700;
  margin-left: 6px;
}

/* TIMELINE SECTION */
.timeline {
  margin-top: 20px;
  padding-left: 6px;
  color: #CFA8B5;
  border-left: 3px solid #CFA8B5;
  font-size: 1.04rem;
  letter-spacing: 0.01em;
  background: #22232E;
  border-radius: 6px;
  padding: 13px 24px;
}
@media (max-width:700px) {.timeline{padding:8px 8px;}}

/* CARD + CONTENT SPACING (CRITICAL REQUIREMENT) */
section, .section, .card, .testimonial-card, .faq-list>div, .content-wrapper, .info-box {
  margin-bottom: 20px;
}
section:last-child, .content-wrapper:last-child, .testimonial-card:last-child, .faq-list>div:last-child { margin-bottom: 0; }

/* SPACING CLASSES */
.mt-2 { margin-top: 2px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* REMOVE ABSOLUTE FROM CARDS — NO ABSOLUTE POSITIONING FOR CONTENT */
.card,[class*=card]{position:relative;}

/* FLEX PATTERNS (CRITICAL) */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* RESPONSIVE FLEX-ONLY ALIGNMENT */
@media (max-width: 768px) {
  .section { padding: 28px 5px; }
  .content-grid,
  .card-container,
  .text-image-section,
  .features {
    flex-direction: column;
    gap: 16px;
  }
  .content-wrapper { gap:13px; }
}

/* ACCESSIBILITY */
:focus { outline: 2px solid #CFA8B5; outline-offset: 2px; }

/* PRINT STYLES (FOR LEGAL PAGES) */
@media print {
  header, footer, #cookie-banner, .mobile-menu {display:none !important;}
  section, .container { background: #fff; color: #222 !important; }
  h1,h2,h3,h4 { color: #1a1f28 !important; }
  a { color: #222 !important; text-decoration: underline; }
}
