/* =========================
   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,
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #181B23;
  color: #F3F7F9;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* Import fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* =========================
   BRAND COLORS & CUSTOM PROPS
   ========================= */
:root {
  --color-primary: #1C2237;
  --color-primary-dark: #181B23;
  --color-secondary: #E8C547;
  --color-accent: #F3F7F9;
  --color-divider: #2A3142;
  --color-metal: #767676;
  --color-card-bg: #232733;
  --color-shadow: rgba(28, 34, 55, 0.14);
  --color-success: #92d46f;
  --color-error: #d44d5c;
}


/* =========================
   TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-accent);
  font-weight: 900;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, span, em, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-accent);
}
strong {
  color: var(--color-secondary);
  font-weight: bold;
}
em {
  color: var(--color-metal);
}

/* =========================
   CONTAINER & BASIC LAYOUT
   ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 18px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */
header {
  width: 100%;
  background: var(--color-primary-dark);
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
header img {
  height: 48px;
  margin-right: 36px;
}
header nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-accent);
  padding: 8px 0;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}
.cta-btn {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 10px 26px;
  margin-left: 28px;
  border-radius: 30px;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffd000;
  color: var(--color-primary);
  box-shadow: 0 4px 18px 0 var(--color-shadow);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 2rem;
  margin-left: 24px;
  cursor: pointer;
  outline: none;
  z-index: 200;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover {
  color: #ffd000;
}

/* =========================
   MOBILE MENU STYLES
   ========================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28, 34, 55, 0.98);
  z-index: 5000;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 30px 28px 24px 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-secondary);
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  padding: 8px 14px 8px 8px;
  margin-bottom: 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #ffd000;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.3rem;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
}

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

/* =========================
   HERO SECTIONS
   ========================= */
.hero-section {
  background: linear-gradient(120deg, #232733 80%, #1C2237 100%);
  padding: 60px 0 50px 0;
  margin-bottom: 40px;
  box-shadow: 0 4px 18px 0 var(--color-shadow);
}
.hero-section h1 {
  color: var(--color-secondary);
  font-size: 2.7rem;
  margin-bottom: 14px;
  text-shadow: 1px 1px 0 #191c25, 0 2px 8px #1b2538;
}
.hero-section p {
  color: var(--color-accent);
  font-size: 1.1rem;
  margin-bottom: 22px;
  line-height: 1.7;
  max-width: 680px;
}
.hero-section .cta-btn, .hero-section a.cta-btn {
  margin-top: 16px;
}

/* =========================
   SECTION LAYOUTS & COMMONS
   ========================= */
ul {
  padding-left: 0;
}
li {
  margin-bottom: 14px;
  line-height: 1.6;
}
ul li img {
  display: inline-block;
  margin-right: 12px;
  vertical-align: middle;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card-bg);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  min-width: 250px;
  max-width: 380px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-7px) scale(1.02);
  box-shadow: 0 8px 32px 0 var(--color-shadow);
}

.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;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px 30px 20px 26px;
  background: #f6f6f6;
  color: #1C2237; /* for proper contrast */
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  margin-bottom: 20px;
  min-height: 90px;
  max-width: 670px;
}
.testimonial-card p {
  color: #222b3b;
  font-size: 1.04rem;
  flex: 1 1 65%;
  margin-bottom: 0;
}
.testimonial-meta {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-left: 12px;
  white-space: nowrap;
  text-align: right;
}

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

.values-section ul, .values-section ol {
  margin-bottom: 18px;
}
.values-section li {
  margin-bottom: 16px;
}

.team-section .text-section,
.artist-profiles .text-section,
.faq-section .text-section,
section .text-section {
  background: var(--color-card-bg);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 1px 6px 0 var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-section {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 20px 50px 20px;
  box-shadow: 0 0 10px 0 var(--color-shadow);
}
.cta-section h2,
.cta-section p {
  color: var(--color-primary-dark);
}
.cta-section .cta-btn {
  background: var(--color-primary-dark);
  color: var(--color-secondary);
  margin-top: 20px;
}
.cta-section .cta-btn:hover {
  background: #171b28;
  color: #ffd000;
}

.cta-link, a.cta-link {
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color .18s;
  border-bottom: 1.5px solid var(--color-secondary);
  padding-bottom: 2px;
}
.cta-link:hover, a.cta-link:focus {
  color: #ffd000;
  border-bottom: 1.5px solid #ffd000;
}

/* =========================
   LEGAL PAGES
   ========================= */
.legal-section {
  background: var(--color-card-bg);
  border-radius: 10px;
  padding: 48px 24px 24px 24px;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
}
.legal-section h1, .legal-section h2, .legal-section h3 {
  color: var(--color-secondary);
}

/* =========================
   FOOTER
   ========================= */
footer {
  width: 100%;
  background: var(--color-primary-dark);
  border-top: 2px solid var(--color-divider);
  padding: 38px 0 18px 0;
  box-shadow: 0 -1px 12px 0 var(--color-shadow);
}
footer .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
  margin-bottom: 8px;
}
footer a {
  color: var(--color-secondary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  transition: color 0.15s;
}
footer a:hover, footer a:focus {
  color: #ffd000;
}
footer p {
  color: var(--color-metal);
  font-size: 0.94rem;
  margin-bottom: 3px;
}


/* =========================
   BLOG & ARTICLES
   ========================= */
.blog-articles ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-articles li {
  background: var(--color-card-bg);
  border-left: 5px solid var(--color-secondary);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  transition: box-shadow 0.2s, border .18s;
  box-shadow: 0 1px 7px 0 var(--color-shadow);
}
.blog-articles li:hover {
  box-shadow: 0 4px 24px 0 var(--color-shadow);
  border-left: 5px solid #ffd000;
}
.blog-articles h3 {
  color: var(--color-secondary);
}
.blog-articles span {
  color: var(--color-metal);
  font-size: 0.95rem;
}

/* =========================
   THANK-YOU PAGE
   ========================= */
.thank-you-section {
  background: var(--color-card-bg);
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 var(--color-shadow);
  margin: 50px 0 50px 0;
  padding: 54px 18px;
  text-align: center;
}
.thank-you-section h1 {
  color: var(--color-secondary);
  margin-bottom: 20px;
}
.thank-you-section p {
  max-width: 560px;
  margin: 0 auto 12px auto;
  color: var(--color-accent);
}

/* =========================
   COOKIE BANNER & MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  z-index: 6000;
  left: 0; right: 0; bottom: 0;
  background: #232733;
  width: 100%;
  box-shadow: 0 -2px 22px 0 var(--color-shadow);
  color: var(--color-accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 22px 12px 22px 12px;
  font-size: 1rem;
  transition: transform 0.34s cubic-bezier(0.77,0,0.18,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  max-width: 700px;
  flex: 1 1 500px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  padding: 7px 18px;
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  font-weight: bold;
  border: none;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 10px 0 var(--color-shadow);
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cookie-btn.reject {
  background: var(--color-error);
  color: #fff;
}
.cookie-btn.settings {
  background: #303747;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-btn:hover {
  background: #ffd000;
  color: var(--color-primary);
  box-shadow: 0 5px 18px 0 var(--color-shadow);
}
.cookie-btn.reject:hover {
  background: #d31d3c;
}
.cookie-btn.settings:hover {
  color: #ffd000;
  border-color: #ffd000;
  background: #232733;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 7000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(17,20,28,0.87);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s, visibility 0.25s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #232733;
  border-radius: 10px;
  box-shadow: 0 8px 30px 0 var(--color-shadow);
  max-width: 470px;
  width: 95%;
  padding: 38px 26px 26px 26px;
  color: var(--color-accent);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  color: var(--color-secondary);
  margin-bottom: 4px;
  font-size: 1.22rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-switch {
  width: 38px;
  height: 22px;
  border-radius: 12px;
  background: #bbb;
  position: relative;
  transition: background 0.15s;
  margin-left: 8px;
  flex-shrink: 0;
}
.cookie-switch[data-enabled='true'] {
  background: var(--color-success);
}
.cookie-switch-inner {
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px; top: 2px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-switch[data-enabled='true'] .cookie-switch-inner {
  left: 18px;
  background: var(--color-secondary);
  box-shadow: 0 0 5px #ffe675;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  color: var(--color-secondary);
  font-size: 1.65rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1;
}
.cookie-modal-close:hover {
  color: #ffd000;
}

/* =========================
   RESPONSIVE & MOBILE FLEX
   ========================= */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.45rem;
  }

  header .container {
    flex-direction: row;
    align-items: center;
    padding: 0 8px;
    min-height: 62px;
  }

  .hero-section {
    padding: 37px 0 30px 0;
    margin-bottom: 24px;
  }

  .section {
    padding: 20px 4vw;
    margin-bottom: 38px;
  }
  .card, .testimonial-card {
    padding: 16px 8px;
    min-width: unset;
    max-width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .blog-articles ul {
    gap: 16px;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.35rem;
  }
  h2 {
    font-size: 1.08rem;
  }
  .hero-section h1 {
    font-size: 1.45rem;
  }
  .cta-section {
    padding: 25px 6px 28px 6px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 4px 15px 4px;
    gap: 12px;
  }
  .cookie-banner-buttons {
    flex-wrap: wrap;
    gap: 8px;
  }
  .cookie-modal-content {
    padding: 18px 5vw 12px 5vw;
  }
}

/* ================
   MICROINTERACTIONS
   ================ */
button, .cta-btn, .cookie-btn {
  outline: none;
  transition: box-shadow 0.16s, background 0.13s, color 0.13s;
}
button:focus, .cta-btn:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 2px var(--color-secondary), 0 2px 12px var(--color-shadow);
}
/* Add button ripples feedback */
button:active, .cta-btn:active, .cookie-btn:active {
  background: #ffec80;
  color: var(--color-primary-dark);
}

/* ================
   UTILITIES
   ================ */
.bg-metal {
  background: #45494f;
  color: #ced2d9;
}
.shadow {
  box-shadow: 0 4px 30px 0 var(--color-shadow);
}
.rounded {
  border-radius: 10px;
}

/* Accessibility focus states */
a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1.5px;
}

/* =========================
   INDUSTRIAL MODERN DETAILS
   ========================= */
/* Use subtle metallic lines */
.section, .hero-section, .card, .testimonial-card, .blog-articles li, .legal-section {
  border: 1.3px solid var(--color-divider);
  box-shadow: 0 2px 11px 0 var(--color-shadow);
}
.card {
  border-left: 6px solid var(--color-metal);
}

/* Metallic details for icons */
ul li img, .section img {
  filter: grayscale(35%) brightness(1.1) contrast(1.25) drop-shadow(1px 1px 0 #222a38);
  border-radius: 2px;
  background: #232733;
  padding: 2px;
}

/* Title accent underline */
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-secondary);
  margin: 11px 0 0 0;
  border-radius: 2px;
}

/* ================
   SPACING & FLEX GAPS
   ================ */
main > section:not(:last-child) {
  margin-bottom: 60px;
}
.section, .card-container, .card, .content-grid,
.text-image-section, .testimonial-card, .feature-item {
  /* gap, margin-bottom are set above per requirements */
}

/* ================
   SCROLLBAR Styling (industrial look)
   ================ */
body::-webkit-scrollbar {
  width: 8px;
  background: #191c25;
}
body::-webkit-scrollbar-thumb {
  background: var(--color-divider);
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--color-metal);
}

/* Industrial font fallback */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: local('Montserrat Black'), local('Montserrat-Black'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUo6zw4g7SJpQkzM8k6fA.ttf') format('truetype');
  font-display: swap;
}


/* =========================
   END OF FILE
   ========================= */
