/* CSS RESET & BASES ------------------ */
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;
}
body {
  line-height: 1.5;
  background: #F1FAEE;
  color: #1D3557;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%; display: block;
}
a {
  color: #1D3557; text-decoration: none; transition: color 0.2s;
}
a:focus { outline: 2px solid #E63946; outline-offset: 2px; }
strong { font-weight: 700; }
ul, ol { padding-left: 24px; }


/* TYPOGRAPHY -------------------------- */
h1 { font-family: 'Montserrat', Impact, Arial, sans-serif; font-size: 2.5rem; font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px; }
h2 { font-family: 'Montserrat', Impact, Arial, sans-serif; font-size: 2rem; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; }
h3 { font-family: 'Montserrat', Impact, Arial, sans-serif; font-size: 1.3rem; font-weight: 600; letter-spacing: 0; margin-bottom: 8px; }
h4, h5, h6 { font-family: 'Montserrat', Impact, Arial, sans-serif; font-weight: 600; }
p, li { font-size: 1rem; margin-bottom: 8px; }
.tagline { font-family: 'Montserrat', Arial, sans-serif; font-size: 1.125rem; font-weight: 500; color: #E63946; margin-bottom: 20px; letter-spacing: .5px; }



/* CONTAINER & FLEXBOX GRID ------------ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto; margin-right: auto; 
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(29,53,87,0.07);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(29,53,87,0.09);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 310px;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.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 {
  background: #F1FAEE;
  border-left: 6px solid #E63946;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(29,53,87,0.05);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX CONTAINERS FOR INDEX.HTML ------ */
.feature-grid {
  display: flex; flex-wrap: wrap; gap: 24px; list-style: none; margin: 0; padding: 0;
}
.feature-grid > li {
  background: #fff;
  border: 2px solid #1D3557;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(29,53,87,.06);
  flex: 1 1 220px;
  min-width: 240px;
  max-width: 300px;
  padding: 24px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s;
}
.feature-grid > li:hover {
  box-shadow: 0 8px 24px rgba(230,57,70,0.14);
  border-color: #E63946;
}
.feature-grid img {
  width: 40px; height: 40px; margin-bottom: 8px;
}

.service-links-grid {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 8px;
}
.service-link {
  background: #1D3557;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  border-radius: 18px;
  padding: 14px 32px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 6px rgba(29,53,87,0.08);
}
.service-link:hover, .service-link:focus {
  background: #E63946;
  color: #fff;
}

.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #E63946;
  border-bottom: 2px solid #E63946;
  padding-bottom: 2px;
  transition: border 0.2s, color 0.2s;
}
.cta-link:hover, .cta-link:focus {
  color: #1D3557;
  border-bottom: 2px solid #1D3557;
}

.cta-banner {
  background: #1D3557;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(29,53,87,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.cta-banner h2,
.cta-banner p { color: #fff; }


/* BUTTONS, CTAS ----------------------- */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: #E63946;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 36px;
  margin-top: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(230,57,70,0.08);
  transition: background 0.18s, box-shadow 0.18s, transform 0.11s;
  text-transform: uppercase;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1D3557;
  color: #fff;
  box-shadow: 0 6px 24px rgba(29,53,87,0.16);
  transform: translateY(-2px) scale(1.04) skew(-2deg);
}


/* HEADER & NAVIGATION ----------------- */
header {
  background: #fff;
  border-bottom: 2px solid #1D3557;
  box-shadow: 0 2px 12px 0 rgba(29,53,87,0.05);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-nav {
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; font-weight: 500;
  color: #1D3557; padding: 8px 14px; border-radius: 8px;
  transition: background 0.18s, color .18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E63946;
  color: #fff;
}
header img { max-height: 48px; margin-right: 18px; }


/* HERO SECTIONS ----------------------- */
.hero {
  min-height: 340px;
  background: #F1FAEE;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 40px rgba(29,53,87,0.10);
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 60px 0 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1 { color: #1D3557; }


/* TESTIMONIALS/SPECIAL CARDS ---------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.testimonials .testimonial-card {
  flex: 1 1 280px;
  max-width: 380px;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: #1D3557;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1D3557;
  margin-left: 14px;
}
.testimonial-card strong { color: #E63946; }


/* FOOTER ------------------------------ */
footer {
  background: #1D3557;
  color: #fff;
  margin-top: 60px;
  padding: 38px 0 24px 0;
  border-radius: 32px 32px 0 0;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer a { color: #fff; opacity: 0.93; transition: opacity .2s, color .18s; }
footer a:hover, footer a:focus { color: #E63946; opacity: 1; text-decoration: underline; }
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 20px; align-items: center;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.footer-contact img {
  height: 30px;
  width: auto;
  margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
}
.footer-social img { width: 28px; height: 28px; opacity: 0.85; transition: opacity .16s, filter .15s; }
.footer-social a:hover img { opacity: 1; filter: brightness(1.25); }
footer .cta-btn {
  margin-left: 0;
  margin-right: 0;
  margin-top: 20px;
  background: #E63946;
}


/* WORKSHOPS PAGE ---------------------- */
.workshop-list {
  display: flex; flex-wrap: wrap; gap: 24px; list-style: none; margin: 0; padding: 0;
}
.workshop-list li {
  background: #fff;
  border: 2px solid #1D3557;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(29,53,87,0.08);
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 330px;
  padding: 20px 16px;
  margin-bottom: 20px;
  transition: box-shadow .2s, border .2s;
  display: flex; flex-direction: column; gap: 8px;
}
.workshop-list li:hover {
  box-shadow: 0 6px 18px rgba(29,53,87,0.16);
  border-color: #E63946;
}
.workshop-steps {
  margin-top: 36px;
}
.workshop-steps ol {
  margin: 0 0 12px 18px;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.1px;
  font-size: 1.03em;
}
.workshop-steps li { margin-bottom: 8px; }


/* ABOUT PAGE SPECIALS ----------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 12px;
  color: #1D3557;
}
.text-section h3 { margin-top: 16px; }


/* MINIATURES & MATERIALS PAGES -------- */
.miniature-features ul,
.material-features ul,
.model-services ul,
.material-services ul,
.event-listings ul,
.event-services ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}
.contact-list img {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* BASIC FORMS (future-proof) ---------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 2px solid #E63946;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.14s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: #1D3557;
}
label { font-family: 'Montserrat', Arial, sans-serif; font-size: 1rem; }

/* Utility - Hide visually, keep accessible */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0; padding: 0; margin: -1px;
}

/* =========== RESPONSIVE MEDIA QUERIES =========== */
@media (max-width: 1024px) {
  .feature-grid > li, .workshop-list li {
    min-width: 200px; max-width: 100%;
  }
  .service-link { font-size: 1rem; padding: 12px 24px; }
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .content-wrapper { gap: 16px; }
  .cta-banner { padding: 28px 12px; }
}
@media (max-width: 768px) {
  .container { padding: 0 10px; }
  .hero {
    min-height: unset;
    padding: 30px 0 20px 0;
    border-radius: 0 0 24px 24px;
  }
  .section, .cta-banner {
    padding: 22px 6px;
    border-radius: 14px;
  }
  .card { min-width: 180px; max-width: 100%; padding: 16px; }
  .feature-grid, .workshop-list, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .service-links-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonials .testimonial-card,
  .testimonial-slider .testimonial-card {
    max-width: 100%;
  }
  footer .container {
    gap: 14px;
    padding: 0 8px;
  }
  .footer-contact { flex-direction: column; gap: 7px; align-items: flex-start; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .cta-btn { font-size: 0.96rem; padding: 10px 23px; }
  .hero, .cta-banner { padding-top: 18px; padding-bottom: 12px; }
}


/* =========== MOBILE NAVIGATION =========== */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #E63946;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
  display: none;
  transition: background 0.16s;
  z-index: 101;
}
.mobile-menu-toggle:focus { background: #E63946; color: #fff; }
@media (max-width: 960px) {
  .main-nav, header .cta-btn { display: none !important; }
  .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 2px 32px rgba(29,53,87,0.30);
  z-index: 150;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  margin: 16px 18px 0 0;
  color: #E63946;
  cursor: pointer;
  transition: color 0.14s, background 0.16s;
  border-radius: 8px;
  padding: 6px 10px;
  z-index: 201;
}
.mobile-menu-close:focus { background: #E63946; color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 38px 0 0 0;
  font-size: 1.23rem;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D3557;
  font-weight: 600;
  font-size: 1.18rem;
  padding: 6px 0;
  border-radius: 2px;
  transition: color 0.18s, background 0.16s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #E63946;
  background: #F1FAEE;
}


/* Hide mobile menu desktop */
@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}

/* Overlay when menu open */
body.menu-open {
  overflow: hidden;
}

/* =========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1D3557;
  color: #fff;
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 10px 18px 10px;
  box-shadow: 0 -2px 40px rgba(29,53,87,0.30);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1), opacity .3s;
  border-radius: 22px 22px 0 0;
  opacity: 1;
  gap: 16px;
}
.cookie-banner.hide {
  transform: translateY(150%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  font-size: 1rem; color: #fff; margin-bottom: 0;
}
.cookie-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.7px;
  border-radius: 100px;
  border: none;
  padding: 10px 26px;
  cursor: pointer;
  margin-bottom: 0;
  background: #E63946;
  color: #fff;
  transition: background .18s, color .17s, box-shadow 0.18s;
  box-shadow: 0 1px 6px rgba(29,53,87,0.11);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1D3557;
  color: #fff;
}
.cookie-btn-alt {
  background: #fff;
  color: #1D3557;
  border: 2px solid #E63946;
}
.cookie-btn-alt:hover, .cookie-btn-alt:focus {
  background: #E63946;
  color: #fff;
  border: 2px solid #E63946;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(29,53,87,0.55);
  z-index: 299;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .36s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #1D3557;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(29,53,87,0.33);
  min-width: 330px;
  max-width: 95vw;
  padding: 34px 28px 18px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.34s cubic-bezier(.75,.1,.55,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(40px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #1D3557;
  font-family: 'Montserrat', Impact, Arial, sans-serif;
  margin-bottom: 7px;
  font-weight: 700;
}
.cookie-options {
  display: flex; flex-direction: column; gap: 13px; }
.cookie-option {
  display: flex; align-items: center; gap: 10px;
}
.cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  background: #E63946;
  border-radius: 12px;
  position: relative;
  transition: background 0.18s;
  outline: none; border: none;
  cursor: pointer;
}
.cookie-toggle:disabled {
  background: #D3D7DA;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: "";
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute; left: 2px; top: 2px;
  transition: left 0.16s;
}
.cookie-toggle:checked {
  background: #1D3557;
}
.cookie-toggle:checked::before {
  left: 18px;
}
.cookie-option-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1D3557;
}
.cookie-modal-actions {
  display: flex; flex-wrap: wrap; gap: 13px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 18px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #E63946;
  cursor: pointer;
}
.cookie-modal-close:focus {
  background: #F1FAEE; color: #1D3557;
}

/* ========== GEOMETRIC STRUCTURED EFFECTS ========== */
/* Diagonal accents, angled shapes, futuristic but clean cards */

.feature-grid > li, .workshop-list li {
  position: relative;
}
.feature-grid > li::after, .workshop-list li::after {
  content: "";
  display: block;
  position: absolute;
  top: 0; right: 0;
  width: 48px; height: 48px;
  background: rgba(29,53,87,0.06);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  border-top-right-radius: 16px;
  z-index: 1;
}
.feature-grid > li:hover::after,
.workshop-list li:hover::after {
  background: rgba(230,57,70,0.16);
}

.card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 60px;
  background: rgba(230,57,70,0.07);
  border-bottom-left-radius: 18px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: 1;
}

.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -70px; right: -120px;
  width: 180px; height: 240px;
  background: rgba(241,250,238,0.045);
  transform: rotate(-20deg);
  border-radius: 62px;
  z-index: 0;
}
.cta-banner .content-wrapper { position: relative; z-index: 2; }

.testimonial-card {
  position: relative;
  z-index: 2;
}
.testimonial-card::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px; left: 6px;
  width: 16px; height: 16px;
  background: #E63946;
  clip-path: polygon(0 100%, 100% 0, 0 0, 0% 0);
  opacity: 0.08;
  z-index: 0;
}

/* SUBTLE ANIMATIONS ------------------- */
.cta-btn, .service-link, .feature-grid > li, .workshop-list li {
  transition: box-shadow 0.16s, transform 0.11s, border 0.2s;
}
.cta-btn:active, .service-link:active,
.feature-grid > li:active, .workshop-list li:active {
  transform: scale(0.98) skew(0.5deg);
}

/* Thin scrollbar styles (modern UI) ---- */
::-webkit-scrollbar { width: 8px; background: #f2f2f2; }
::-webkit-scrollbar-thumb { background: #1D3557; border-radius: 8px; }

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