/* ================= CSS Reset & Base ================ */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #28314F;
  background: #F7F9FB;
  line-height: 1.7;
  font-size: 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #eacd6c;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:active {
  outline: 2px solid #FFE079;
  outline-offset: 2px;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
}
li {
  margin-bottom: 6px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
  color: #28314F;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
p { margin-bottom: 14px; }
strong { font-weight: bold; color: #28314F; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

/* ================= Header & Navigation ================ */
header {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(40,49,79,0.05);
  padding: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.brand-logo img {
  height: 46px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #bca148;
  font-weight: 500;
  padding: 10px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:not(.cta-button):hover,
.main-nav a:not(.cta-button):focus {
  color: #3a4780;
}
.main-nav .cta-button {
  margin-left: 20px;
}

.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #28314F;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 30px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 2px 10px rgba(40,49,79,0.10);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
  cursor: pointer;
  outline: none;
  position: relative;
}
.cta-button:hover,
.cta-button:focus {
  background: #3a4780;
  color: #ffe079;
  box-shadow: 0 4px 14px rgba(40,49,79,0.14);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #28314F;
  cursor: pointer;
  z-index: 200;
  padding: 4px 10px;
  margin-left: 12px;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #798099;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================= Mobile Navigation ================== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,49,79,0.96);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.02,.4,1.02);
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 22px 24px 16px auto;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #FFE079;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 18px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 14px 0;
  transition: color 0.18s, background 0.2s;
  border-radius: 4px;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #FFE079;
  background: rgba(255,224,121,0.07);
}

@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================= Main & Section Layouts ============= */
main {
  flex: 1 0 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section.hero, section.cta, section.thank-you {
  background: #28314F;
  color: #fff;
  margin-bottom: 0;
  padding: 52px 0 50px 0;
}
section.hero h1,
section.hero h2,
section.hero .subheadline,
section.cta h2,
section.cta p,
section.cta .cta-button,
section.thank-you h1,
section.thank-you p {
  color: #fff;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ================= Feature Grid / Flex Layouts ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.feature-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(40,49,79,0.06);
  padding: 26px 20px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(40,49,79,0.12);
  transform: translateY(-2px) scale(1.025);
}
.feature-item img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* ================= Text-Image & Text Section Flex ====== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* ===================== Testimonial Layouts ============== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 20px 26px 20px 22px;
  background: #fff;
  color: #28314F;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(40,49,79,0.10);
  font-size: 1.1rem;
  min-width: 260px;
  max-width: 590px;
  transition: box-shadow 0.20s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(40,49,79,0.13);
}
.testimonial-author {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #ADB0B8;
  font-size: 1rem;
  font-style: italic;
  margin-left: 8px;
}

/* ============ Service/Occasion Cards (Services, Style) ==== */
.service-list, .occasion-grid, .trend-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.service-item, .occasion-item, .trend-season {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,49,79,0.07);
  padding: 22px 18px 20px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 240px;
  max-width: 350px;
  transition: box-shadow 0.18s;
}
.service-item:hover, .occasion-item:hover, .trend-season:hover {
  box-shadow: 0 4px 20px rgba(40,49,79,0.12);
}
.service-item .price {
  background: #FFE079;
  color: #28314F;
  border-radius: 20px;
  font-size: 0.96em;
  font-weight: 600;
  padding: 2px 11px;
  margin-left: 10px;
}

/* ================ Trend/Look Description Sections ========== */
.look-descriptions, .trend-narratives {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

/* ================ Contact Section ========================== */
.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 24px;
}
.address-block, .email-block, .hours-block {
  background: #fff;
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: 0 1px 6px rgba(40,49,79,0.06);
  font-size: 1.1rem;
  flex: 1 1 210px;
  min-width: 190px;
  color: #28314F;
  margin-bottom: 14px;
}

/* ================= Call-to-Action Section ================ */
section.cta {
  background: #28314F;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}
section.cta .content-wrapper {
  align-items: center;
  gap: 16px;
}
section.cta .cta-button {
  margin-top: 10px;
}

/* ================= Footer ================================ */
footer {
  background: #232B42;
  color: #fff;
  font-size: 1rem;
  padding: 40px 0 22px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  width: 100%;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px; width: 48px;
  margin-bottom: 10px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-menu a {
  color: #adb0b8;
  font-size: 1rem;
  transition: color 0.2s;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: #ffe079;
}
.footer-contact {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer-contact a {
  color: #FFE079;
  font-weight: 500;
}
.footer-social {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  padding: 2px;
  border-radius: 4px;
  transition: background 0.16s;
}
.footer-social a:hover, .footer-social a:focus {
  background: #28314F;
}
.footer-social img {
  height: 28px;
  width: 28px;
  filter: grayscale(0.1) brightness(1.2);
}

@media (max-width: 900px) {
  footer .content-wrapper, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  footer {
    padding: 34px 0 16px 0;
  }
}

/* =============== Responsive Utilities ==================== */
@media (max-width: 1020px) {
  .feature-grid, .service-list, .occasion-grid, .trend-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  section {
    padding: 28px 6px;
    margin-bottom: 38px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  h3 { font-size: 1.11rem; }
  .feature-item, .service-item, .occasion-item, .trend-season {
    min-width: 160px;
    max-width: 100%;
    padding: 16px 10px 14px 10px;
  }
  .feature-grid, .service-list, .occasion-grid, .trend-grid {
    gap: 14px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .testimonial-card {
    padding: 14px 10px 13px 12px;
    font-size: 1rem;
    min-width: unset;
    max-width: 100%;
  }
  .contact-block {
    gap: 14px;
    flex-direction: column;
  }
}

/* =============== Spacing, Gaps, Margin Rules ============== */
.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;
}

/* ================= Cookie Consent Banner ================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 16000;
  background: #28314F;
  color: #fff;
  box-shadow: 0 -4px 16px rgba(40,49,79,0.11);
  padding: 24px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
  animation: banner-slide-in 0.7s cubic-bezier(.52,.01,.22,1.07);
}
@keyframes banner-slide-in {
  0% { transform: translateY(100%); opacity:0; }
  100% { transform: translateY(0%); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 24px;
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s;
  margin-bottom: 0;
}
.cookie-btn.accept {
  background: #FFE079;
  color: #28314F;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff3b5;
}
.cookie-btn.reject {
  background: #ADB0B8;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #767a85;
}
.cookie-btn.settings {
  background: #28314F;
  color: #FFE079;
  border: 2px solid #FFE079;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #28314F;
  border-color: #28314F;
}

/* ============= Cookie Modal ============================= */
.cookie-modal-backdrop {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(40, 49, 79, 0.7);
  z-index: 17000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.34s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #28314F;
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(40,49,79,0.14);
  padding: 34px 32px 24px 32px;
  min-width: 330px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-bounce-in 0.33s cubic-bezier(.43,-0.08,.51,1.12);
}
@keyframes modal-bounce-in {
  0% { transform: scale(0.88) translateY(34px); opacity:0; }
  33% { transform: scale(1.08) translateY(-10px); opacity: 1; }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  margin-bottom: 2px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-option-label {
  font-size: 1rem;
  color: #28314F;
}
.cookie-toggle {
  width: 40px;
  height: 22px;
  appearance: none;
  outline: none;
  border-radius: 12px;
  background: #ADB0B8;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: #28314F;
}
.cookie-toggle:disabled {
  background: #d1cfc7;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.13);
  position: absolute;
  top: 1px;
  left: 1px;
  transition: left 0.18s;
}
.cookie-toggle:checked::before {
  left: 19px;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal .cookie-btn {
  min-width: 106px;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #adb0b8;
  font-size: 1.5rem;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  margin: -22px -10px 6px auto;
  transition: color 0.15s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  color: #28314F;
}
@media (max-width: 570px) {
  .cookie-modal {
    padding: 18px 8px 16px 8px;
    min-width: 0;
    max-width: 100vw;
  }
}

/* =============== Misc Utilities ======================== */
.subheadline {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #ADB0B8;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* Spacing utilities for minimum margins */
.card, .feature-item, .service-item,
.occasion-item, .trend-season, .testimonial-card {
  margin-bottom: 20px;
}

/* Prevent overlapping and ensure adequate spacing */
* {
  min-height: 0;
  min-width: 0;
}

/* ================ Animations & Transitions =============== */
section.hero .cta-button,
section.cta .cta-button,
.cta-button,
.cookie-btn {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.18s;
}

/* Prevent absolute for content, only for decor if required */

/* ================= End of CSS =========================== */
