/* -------------------------
   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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
/*
   BASE TYPOGRAPHY & COLORS
----------------------------------*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: #FFF8F4;
  color: #23434A;
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.7;
  min-height: 100vh;
}

@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
}
@font-face {
  font-family: 'Lato';
  src: local('Lato'), url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #23434A;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; line-height: 1.18; }
h2 { font-size: 2rem; line-height: 1.25; }
h3 { font-size: 1.4rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }
p, ul, ol, li { font-size: 1rem; }
p { margin-bottom: 18px; }
.subheadline, .confirmation-message, .next-steps-info {
  font-size: 1.25rem;
  font-weight: 400;
  color: #366C76;
  margin-bottom: 24px;
}
strong, b {
  font-weight: bold;
}
a {
  color: #A97A4D;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #366C76;
  text-decoration: underline;
}

/* ------------------------------
   CONTAINER & COMMON LAYOUTS
---------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  .container {
    padding: 0 8px;
  }
}

/* --------------------
   MAIN NAVIGATION
----------------------*/
header {
  background: #FFF8F4;
  border-bottom: 1px solid #E3DCCB;
  position: sticky;
  top: 0;
  z-index: 75;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 18px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 14px;
  background: #FFF8F4;
  box-shadow: 0 6px 18px rgba(171,138,109,0.08);
  padding: 5px;
  transition: background 0.25s;
}
.logo:hover img,
.logo:focus img {
  background: #E3DCCB;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Lato', Arial, sans-serif;
  color: #23434A;
  background: none;
  border: none;
  font-size: 1.05rem;
  padding: 7px 14px;
  border-radius: 20px;
  transition: background 0.18s, color 0.18s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F6E7D8;
  color: #A97A4D;
}
.cta-primary {
  background: #A97A4D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  padding: 11px 28px;
  border-radius: 38px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 4px 18px rgba(171, 138, 109, 0.13);
  text-decoration: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.2s;
  letter-spacing: 0.02em;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #8D674B;
  color: #FFF;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(36,100,118,0.08);
}

/* ------------
  MOBILE MENU
--------------*/
.mobile-menu-toggle {
  display: none;
  background: #A97A4D;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  border: none;
  border-radius: 12px;
  padding: 4px 14px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s, box-shadow 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #366C76;
  background: #8D674B;
}
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #FFFBF6;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.6,.2,.6,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 4px 0 24px rgba(36,108,118,0.10);
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2.3rem;
  color: #23434A;
  background: none;
  border: none;
  padding: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFE7D6;
}
.mobile-nav {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-left: 25px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: #23434A;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 16px;
  background: none;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #FCEBDB;
  color: #A97A4D;
}

/* Hide nav and show burger on mobile */
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -----------
   HERO SECTIONS
-------------*/
.hero, .hero.inspiration-hero, .hero.thank-you-hero {
  background: #FFF8F4;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 6px 32px rgba(171,138,109,0.09);
  padding: 54px 0 46px 0;
  margin-bottom: 0;
}
.hero .container, .hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (max-width: 700px) {
  .hero, .hero.inspiration-hero, .hero.thank-you-hero {
    padding: 42px 0 32px 0;
    border-radius: 0 0 24px 24px;
  }
}

/* -------------
  CARD & FLEX GRIDS
--------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(36,108,118,0.09);
  padding: 26px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.19s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(171,138,109,0.21);
  transform: translateY(-3px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ------------
    FEATURES
--------------*/
.features, .about-features, .creative-set-features, .handmade-benefits, .inspiration-features, .contact-benefits, .gallery-features {
  background: #FFF;
  border-radius: 28px;
  box-shadow: 0 2px 22px rgba(36,108,118,0.08);
  margin-bottom: 60px;
  padding: 40px 24px;
}
@media (max-width: 768px) {
  .features, .about-features, .creative-set-features, .handmade-benefits, .inspiration-features, .contact-benefits, .gallery-features {
    padding: 18px 5px;
    border-radius: 18px;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF8F4;
  border-radius: 18px;
  padding: 23px 20px 18px 20px;
  box-shadow: 0 2px 14px rgba(171,138,109,0.07);
  transition: box-shadow 0.16s;
  min-width: 210px;
  max-width: 260px;
}
.feature-item img {
  height: 44px;
  width: auto;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #366C76;
  font-size: 1.12rem;
}
.feature-item p {
  font-size: 1rem;
  color: #63503d;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 6px 22px rgba(36,108,118,0.12);
}

/* -----------
 SERVICES GRIDS
--------------*/
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item {
  background: #FFF8F4;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(171,138,109,0.07);
  padding: 23px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow 0.17s;
}
.service-item:hover {
  box-shadow: 0 6px 22px rgba(36,108,118,0.12);
}
.service-item h2 {
  font-size: 1.23rem;
  color: #366C76;
  margin-bottom: 5px;
}

/* ----------
  DECOR TYPES
-----------*/
.decor-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 24px 0;
}
.decor-type-item {
  background: #FFF8F4;
  border-radius: 16px;
  padding: 19px 17px 15px 17px;
  box-shadow: 0 2px 10px rgba(171,138,109,0.08);
  flex: 1 1 175px;
  min-width: 155px;
  max-width: 215px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.15s;
}
.decor-type-item:hover {
  box-shadow: 0 4px 16px rgba(171,138,109,0.16);
}
.decor-type-item h2 {
  font-size: 1.05rem;
  color: #A97A4D;
}

/* ---------------
   TESTIMONIALS
----------------*/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF8F4;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(36,108,118,0.12);
  gap: 20px;
  padding: 28px 27px;
  min-width: 250px;
  max-width: 420px;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.04rem;
  color: #23434A;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 10px 32px rgba(36,108,118,0.14);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #23434A;
  margin-bottom: 0;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #366C76;
  margin-bottom: 4px;
}
.testimonial-name {
  font-weight: bold;
}
.testimonial-stars img {
  height: 24px;
  width: 24px;
  margin-right: 2px;
  display: inline-block;
}

/* -------------
     BUTTONS
-------------*/
button, .cta-primary {
  outline: none;
}
button::-moz-focus-inner {
  border: none;
}
/* Focus style for accessibility */
button:focus-visible,
.cta-primary:focus-visible {
  outline: 2px solid #366C76;
}

/* -------
 BADGE
--------*/
.beginner-badge {
  background: #DEF7E1;
  color: #366C76;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  border-radius: 15px;
  padding: 7px 19px;
  display: inline-block;
  margin-top: 19px;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 10px rgba(58, 198, 105, 0.075);
}

/* ---------
   TEXT SECTIONS, LISTS
----------*/
.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section ul,
.text-section ol {
  margin-left: 1.5em;
  margin-bottom: 10px;
  color: #5B362A;
}
.text-section ul li {
  margin-bottom: 9px;
  font-size: 1.01rem;
}
.text-section h3 {
  color: #366C76;
  font-size: 1.14rem;
  margin-top: 10px;
}

/* ----------
 CONTACT SECTION
----------*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.05rem;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 7px;
  height: 20px;
}
.google-map {
  margin-top: 15px;
  font-size: 1rem;
}
.google-map a {
  color: #366C76;
  font-weight: 600;
  text-decoration: underline;
}

/* ------------
   USER STORIES
------------*/
.user-story-snippet {
  background: #FFEEDD;
  border-left: 5px solid #A97A4D;
  border-radius: 16px;
  padding: 13px 17px;
  margin-bottom: 14px;
  box-shadow: 0 1px 7px rgba(169,122,77,0.07);
}
.user-story-snippet h3 {
  font-size: 1.03rem;
  color: #366C76;
}
.user-story-snippet p {
  color: #5B362A;
  font-size: 1.01rem;
  margin-bottom: 0;
}
.call-for-submissions {
  background: #FFF8F4;
  border-radius: 13px;
  padding: 11px 16px;
  box-shadow: 0 1px 7px rgba(36,108,118,0.07);
  color: #23434A;
  margin-bottom: 14px;
}

/* ----------
   FAQ SNIPPET
---------*/
.faq-snippet {
  background: #FFEEDD;
  border-radius: 12px;
  padding: 17px 22px;
  color: #23434A;
  font-size: 1.05rem;
  margin-top: 17px;
  box-shadow: 0 1px 7px rgba(169,122,77,0.08);
}
.faq-snippet p {
  margin: 5px 0;
}

/* ---------------
    FOOTER
-----------------*/
footer {
  background: #FFF8F4;
  border-top: 1px solid #E3DCCB;
  margin-top: 70px;
  padding: 34px 0 24px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 26px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand img {
  height: 38px;
  width: auto;
  background: #FFF;
  border-radius: 10px;
  padding: 2px;
}
.footer-nav {
  display: flex;
  gap: 19px;
  align-items: center;
}
.footer-nav a {
  color: #A97A4D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 16px;
  padding: 5px 11px;
  background: none;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #E3DCCB;
  color: #23434A;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.footer-contact img {
  height: 17px;
  margin-right: 5px;
  vertical-align: middle;
}
@media (max-width: 884px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
}
@media (max-width: 520px) {
  footer {
    padding: 23px 0 12px 0;
  }
  .footer-brand img {
    height: 28px;
  }
}

/* ----------
  COOKIE CONSENT
-------------*/
.cookie-consent-banner {
  position: fixed;
  z-index: 13000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF8F4;
  color: #23434A;
  box-shadow: 0 -2px 22px rgba(171,138,109,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 20px;
  font-size: 1.08rem;
  border-radius: 18px 18px 0 0;
  transition: transform 0.35s cubic-bezier(.7, .15, .7, 1);
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
}
.cookie-consent-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn,
.cookie-settings-btn {
  background: #A97A4D;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 8px 19px;
  transition: background 0.18s, transform 0.13s, color 0.18s;
  margin: 0;
  cursor: pointer;
}
.cookie-btn:hover,
.cookie-settings-btn:hover {
  background: #8D674B;
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.reject {
  background: #D7AE9B;
  color: #23434A;
}
.cookie-btn.reject:hover {
  background: #AB8A6D;
  color: #fff;
}
.cookie-settings-btn {
  background: #366C76;
  color: #fff;
}
.cookie-settings-btn:hover {
  background: #23434A;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 12px;
    padding: 19px 6px;
    font-size: 0.99rem;
  }
  .cookie-consent-btns {
    gap: 9px;
  }
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 14000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,108,118, 0.23);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.2s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #FFF8F4;
  border-radius: 26px;
  box-shadow: 0 6px 38px rgba(36,108,118,0.17);
  padding: 36px 32px 25px 32px;
  min-width: 310px;
  max-width: 98vw;
  color: #23434A;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #23434A;
  position: absolute;
  top: 17px;
  right: 19px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #FFE7D6;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  padding: 10px 0;
}
.cookie-category input[type="checkbox"] {
  accent-color: #A97A4D;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  margin-right: 7px;
}
.cookie-category label {
  font-weight: 600;
  margin-right: 9px;
}
.cookie-category.essential label {
  color: #A97A4D;
  cursor: not-allowed;
}
.cookie-category.essential input {
  background: #E3DCCB;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 12px;
}
@media (max-width: 420px) {
  .cookie-modal-content {
    padding: 20px 6px 16px 10px;
    min-width: 90vw;
  }
}

/* ------------
 ANIMATIONS
-------------*/
@keyframes slideInMenu {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes slideOutMenu {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* -------------
  RESPONSIVE TYPO & LAYOUT
---------------*/
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .feature-grid, .service-grid, .decor-types-grid, .testimonial-slider {
    gap: 15px;
  }
}
@media (max-width: 580px) {
  .card, .testimonial-card, .feature-item, .service-item, .decor-type-item {
    min-width: unset;
    max-width: 100%;
    padding: 13px 9px;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.1rem; }
  .testimonial-card { padding: 18px 7px; }
}

/* -----------
   UTILITIES
-------------*/
.d-none { display: none !important; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* End of style.css */
