/* CSS RESET & BASE STYLES */
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,main,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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: #F2E9E1;
  color: #1B263B;
  min-height: 100vh;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}
a {
  color: #23B4A6;
  text-decoration: none;
  transition: color 0.24s cubic-bezier(.49,1.74,.64,1.32);
}
a:hover, a:focus {
  color: #1B263B;
  text-decoration: underline;
}
::-webkit-input-placeholder {color:#8192a3; opacity:1;}::-moz-placeholder {color:#8192a3; opacity:1;}:-ms-input-placeholder {color:#8192a3; opacity:1;}::placeholder {color:#8192a3; opacity:1;}

/* BRAND TYPOGRAPHY */
h1, .hero-section h1, .news-hero h1, .ticketing-hero h1, .video-hero h1, .registration-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #1B263B;
  margin-bottom: 20px;
}
h2, .cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #23B4A6;
}
p, ul, li, blockquote, cite, address {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #1B263B;
  background: #fff;
  padding: 24px 32px;
  border-left: 4px solid #23B4A6;
  margin-bottom: 8px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(27,38,59,0.06);
}
cite {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  color: #555;
  font-style: normal;
  font-family: 'Inter', Arial, sans-serif;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(27,38,59,0.05);
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-weight: 600;
  font-size: 1.08rem;
  color: #1B263B;
  position: relative;
  padding: 4px 4px 2px 4px;
  border-radius: 6px;
  transition: background 0.25s;
}
header nav a:hover, header nav a:focus {
  background: #23B4A6;
  color: #fff;
}
header a.btn-primary {
  margin-left: 16px;
}
header img {
  height: 48px;
}
.mobile-menu-toggle {
  display: none;
  background: #23B4A6;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  margin-left: 16px;
  cursor: pointer;
  z-index: 30;
  transition: background 0.24s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #1B263B;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #1B263B;
  color: #fff;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.49,1.74,.64,1.32);
  padding-top: 44px;
  padding-bottom: 24px;
  box-shadow: 4px 0 32px rgba(27,38,59,0.25);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  position: absolute;
  right: 20px; top: 18px;
  cursor: pointer;
  z-index: 1001;
  padding: 0 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  width: 100%;
  padding: 12px 24px;
  border-radius: 0 22px 22px 0;
  transition: background 0.24s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23B4A6;
  color: #fff !important;
}

/* HERO SECTIONS */
.hero-section, .news-hero, .ticketing-hero, .video-hero, .registration-hero {
  background: #23B4A6;
  color: #fff;
  border-radius: 0 0 64px 0;
  box-shadow: 0 4px 32px rgba(26,179,162,0.12);
  margin-bottom: 60px;
  padding: 40px 20px 64px 20px;
}
.hero-section h1, .news-hero h1, .ticketing-hero h1, .video-hero h1, .registration-hero h1 {
  color: #fff;
}
.hero-section p, .news-hero p, .ticketing-hero p, .video-hero p, .registration-hero p {
  color: #F2E9E1;
  font-size: 1.18rem;
  margin-bottom: 24px;
}

/* SECTIONS, SPACING, FLEX LAYOUTS */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(27,38,59,0.09);
  padding: 32px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 30px rgba(33,180,166,0.12);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid, .team-profiles, .analysis-previews, .news-snippets, .videos-listing .filter, .analysis-clips {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(27,38,59,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 20px 24px 20px;
  min-width: 220px;
  flex: 1 1 230px;
  max-width: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  height: 44px;
  width: 44px;
}
.feature-item:hover {
  box-shadow: 0 6px 30px rgba(33,180,166,0.16);
  transform: translateY(-4px) scale(1.02);
}

/* CTA SECTION */
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #23B4A6;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 6px 36px rgba(33,180,166,0.08);
  text-align: center;
}
.cta-section h2 {
  color: #fff;
}
.cta-section .btn-primary {
  margin-top: 12px;
}

/* EVENT LIST & TICKET LIST */
.event-list, .ticket-list, ul {
  list-style: none;
  margin-bottom: 18px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.event-list li, .ticket-list li, ul li {
  background: rgba(36,180,166,0.06);
  border-radius: 8px;
  padding: 14px 20px;
  color: #1B263B;
  font-weight: 500;
}
.event-list li strong, .ticket-list li strong {
  color: #23B4A6;
}

/* BUTTONS */
.btn-primary {
  background: #1B263B;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: 'Playfair Display', serif;
  padding: 13px 38px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 4px 20px rgba(27,38,59,0.08);
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.19s;
  margin-top: 10px;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #23B4A6;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #fff;
  color: #1B263B;
  border: 2px solid #23B4A6;
  border-radius: 14px;
  font-family: 'Playfair Display', serif;
  padding: 13px 38px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-right: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, transform 0.19s;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #23B4A6;
  color: #fff;
  border-color: #1B263B;
  transform: translateY(-1px) scale(1.015);
}
.filter-tabs, .category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.filter-tabs button, .category-filter button {
  background: #23B4A6;
  border: none;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 10px;
  padding: 7px 22px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: background .19s, color .17s, box-shadow .17s;
}
.filter-tabs button:hover, .filter-tabs button:focus, .category-filter button:hover, .category-filter button:focus {
  background: #1B263B;
  color: #fff;
  box-shadow: 0 2px 10px rgba(27,38,59,0.07);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(27,38,59,0.09);
  position: relative;
  flex-direction: column;
  max-width: 600px;
  font-size: 1rem;
}
.testimonial-card blockquote {
  color: #1B263B;
  background: #F2E9E1;
  margin-bottom: 6px;
  border-left: 4px solid #23B4A6;
  box-shadow: none;
}
.testimonial-card cite {
  color: #888;
}

/* CUSTOM STYLES FOR ARTISTIC TOUCH */
.feature-item {
  border-left: 8px solid #23B4A6;
  border-bottom: 3px solid #f3b922;
  box-shadow: 0 4px 20px rgba(33,180,166,0.18);
  transition: box-shadow 0.24s, transform 0.18s;
}
.feature-item:nth-child(2n) {
  border-left-color: #f3b922;
  border-bottom-color: #23B4A6;
}
.feature-item h3 {
  color: #1B263B;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

/* CARDS (EXTRA) */
.card, .news-snippets > div, .analysis-previews > div, .analysis-clips > div, .team-member {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(27,38,59,0.08);
  padding: 26px 18px 24px 22px;
  transition: box-shadow .19s, transform .16s;
  margin-bottom: 20px;
  flex: 1 1 230px;
  position: relative;
}
.news-snippets > div, .analysis-previews > div, .analysis-clips > div, .team-member {
  min-width: 230px;
  max-width: 330px;
  flex: 1 1 230px;
}
.card:hover,.news-snippets>div:hover,.analysis-previews>div:hover,.analysis-clips>div:hover,.team-member:hover {
  box-shadow: 0 8px 32px rgba(36,180,166,0.15);
  transform: translateY(-4px) scale(1.015);
}

/* ADDRESS & FOOTER */
footer {
  background: #1B263B;
  color: #F2E9E1;
  padding: 0;
  box-shadow: 0 -4px 32px rgba(27,38,59,0.12);
  border-radius: 56px 0 0 0;
}
footer section {
  margin-bottom: 0;
  padding: 40px 20px 28px 20px;
}
footer .content-wrapper {
  align-items: flex-start;
}
footer img {
  height: 44px;
  margin-bottom: 12px;
}
footer p {
  color: #F2E9E1;
  font-size: 1.08rem;
  margin-bottom: 12px;
}
footer address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #F2E9E1;
  margin-bottom: 20px;
}
footer address img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
footer address div {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
footer nav a {
  color: #23B4A6;
  font-size: 1rem;
  text-decoration: underline;
  border-radius: 6px;
}
footer nav a:hover,footer nav a:focus{
  color: #fff;
  background: #23B4A6;
  text-decoration: none;
}

/* SECTION & CARD SPACING */
section, .card-container, .card,.feature-item, .content-grid, .text-image-section, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .news-snippets, .analysis-previews, .team-profiles, .analysis-clips {
  gap: 20px;
}

/* SPECIAL LAYOUTS */
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.team-member {
  background: #fceedb;
  border-left: 5px solid #23B4A6;
  border-radius: 16px;
}
.featured-event {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(27,38,59,0.10);
  padding: 24px 18px;
  margin-bottom: 14px;
}
.featured-event h3 {
  color: #1B263B;
  margin-bottom: 10px;
}

/* FORMS (if any in the future) */
input,select,textarea {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1.7px solid #cfd8dc;
  margin-bottom: 18px;
  outline: none;
  width: 100%;
  background: #f9f9fa;
  transition: border .18s;
}
input:focus,textarea:focus,select:focus {
  border-color: #23B4A6;
}

/* CTA GROUP */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

/* FILTER BAR */
.filter {
  font-size: 1.05rem;
  margin-bottom: 16px;
  color: #1B263B;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter span {
  font-weight: 600;
  color: #23B4A6;
}

/* PAGINATION (future proof) */
.pagination {
  display: flex;
  gap:12px;
  justify-content: center;
  margin-top: 32px;
}

/* ANIMATION CLASSES */
.fade-in {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.49,1.74,.64,1.32);
}
.fade-in.visible {
  opacity: 1;
}
.slide-in-left {
  transform: translateX(-50px);
  opacity: 0;
  transition: transform 0.45s, opacity 0.45s;
}
.slide-in-left.visible {
  transform: translateX(0);
  opacity: 1;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  color: #1B263B;
  box-shadow: 0 -4px 32px rgba(27,38,59,0.09);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 32px 22px 22px;
  gap: 18px;
  border-radius: 26px 26px 0px 0;
  animation: slideUp .6s cubic-bezier(.49,1.74,.64,1.32);
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner strong {
  color: #1B263B;
  margin-bottom: 4px;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-accept, .cookie-reject {
  background: #23B4A6;
  color: #fff;
  font-family: 'Playfair Display', serif;
  border: none;
  border-radius: 12px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.19s, transform 0.12s;
}
.cookie-accept:hover, .cookie-reject:hover {
  background: #1B263B;
}
.cookie-settings {
  background: none;
  color: #23B4A6;
  padding: 10px 22px;
  font-family: 'Playfair Display', serif;
  border: 2px solid #23B4A6;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-settings:hover {
  background: #23B4A6;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,38,59,0.54);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.29s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 32px 28px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(27,38,59,0.19);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 400px;
  gap: 16px;
  position: relative;
}
.cookie-modal-content h3 {
  color: #1B263B;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #F2E9E1;
  border-radius: 10px;
  padding: 9px 16px;
  margin-bottom: 8px;
}
.cookie-category .switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-category .switch input {display:none;}
.cookie-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #d0d9e0;
  border-radius: 24px;
  transition: background 0.18s;
}
.cookie-category .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-category input:checked + .slider {
  background: #23B4A6;
}
.cookie-category input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  font-size: 1.8rem;
  border: none;
  color: #23B4A6;
  cursor: pointer;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 94vw;
  }
  .card-container, .feature-grid, .content-grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid, .team-profiles, .analysis-previews, .news-snippets, .analysis-clips, .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .feature-item, .card, .team-member, .news-snippets > div, .analysis-previews > div, .analysis-clips > div {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: auto;
  }
  .hero-section, .news-hero, .ticketing-hero, .video-hero, .registration-hero, .cta-section, section {
    padding: 28px 8px 36px 8px;
    border-radius: 0;
  }
  .content-wrapper {
    gap: 22px;
  }
  .text-image-section, .content-grid, .feature-grid, .card-container, .cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card {
    padding: 14px 10px;
  }
  .feature-item, .card, .team-member, .news-snippets > div, .analysis-previews > div, .analysis-clips > div {
    padding: 20px 10px 18px 14px;
    min-width: unset;
    max-width: 100%;
    box-shadow: 0 2px 12px rgba(33,180,166,0.10);
  }
  .featured-event {
    padding: 17px 9px;
  }
  .event-list li, .ticket-list li, ul li {
    font-size: 0.98rem;
    padding: 11px 10px;
  }
  .cookie-banner {
    padding: 13px 9px;
    gap: 11px;
  }
  .cookie-modal-content {
    padding: 26px 7px 20px 7px;
    max-width: 90vw;
  }
  .footer nav {
    gap:13px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero-section h1, .news-hero h1, .ticketing-hero h1, .video-hero h1, .registration-hero h1 {
    font-size: 1.7rem;
  }
  h2, .cta-section h2 {
    font-size: 1.32rem;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 18px;
    font-size: .97rem;
  }
}
