/* ============================================
   Masala Comedy Club — Clean Base Styles
   ============================================
   Design tokens extracted from Elementor config.
   This file replaces shared-styles.css + shared-vendor.css
   for cleaned-up pages.
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --mcc-gold: #E6A700;
  --mcc-red: #9D0919;
  --mcc-white: #FFFFFF;
  --mcc-black: #131311;
  --mcc-text: #7A7A7A;
  --mcc-text-dark: #334155;
  --mcc-bg-dark: #131311;
  --mcc-bg-light: #FBF5E9;
  --mcc-bg-cream: #F0F5FA;
  --mcc-yellow: #FDD310;
  --mcc-gray: #D8D9D9;
  --mcc-blue: #294B7A;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-subheading: 'Kanit', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Spacing */
  --container-width: 1200px;
  --section-padding: 60px 30px;
  --section-padding-mobile: 40px 20px;

  /* Breakpoints (for reference — use in media queries) */
  /* mobile: 767px, tablet: 1024px, laptop: 1366px */
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  color: var(--mcc-text-dark);
  background-color: var(--mcc-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--mcc-red);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--mcc-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--mcc-black);
  margin: 0 0 16px;
}

h1 { font-size: 48px; text-transform: capitalize; letter-spacing: -1.5px; }
h2 { font-size: 40px; text-transform: capitalize; letter-spacing: -1px; }
h3 { font-size: 33px; font-family: var(--font-subheading); }
h4 { font-size: 28px; font-family: var(--font-subheading); }
h5 { font-size: 23px; font-family: var(--font-subheading); }
h6 { font-size: 19px; font-family: var(--font-subheading); }

p {
  margin: 0 0 16px;
  line-height: 30px;
}

/* ---------- Layout ---------- */
.mcc-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.mcc-section {
  padding: var(--section-padding);
}

.mcc-section--dark {
  background-color: var(--mcc-bg-dark);
  color: var(--mcc-white);
}

.mcc-section--dark h2,
.mcc-section--dark h3 {
  color: var(--mcc-white);
}

/* ---------- Content Layout ---------- */
.mcc-two-col {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.mcc-two-col > * {
  flex: 1;
}

@media (max-width: 767px) {
  .mcc-two-col {
    flex-direction: column;
  }
}

/* ---------- Text Content ---------- */
.mcc-text-content h2 {
  color: var(--mcc-gold);
  margin-bottom: 20px;
}

.mcc-text-content h2 a {
  color: inherit;
  text-decoration: none;
}

.mcc-text-content h2 a:hover {
  color: var(--mcc-maroon);
}

.mcc-text-content p {
  color: var(--mcc-text);
  font-size: 16px;
  line-height: 30px;
}

/* ---------- Blog Post ---------- */
.mcc-post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--mcc-text);
  margin-bottom: 24px;
}

.mcc-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mcc-post-meta svg {
  width: 14px;
  height: 14px;
  fill: var(--mcc-text);
}

/* ---------- Image Cover ---------- */
.mcc-image-cover {
  min-height: 400px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .mcc-image-cover {
    min-height: 300px;
  }
}

/* ---------- Shape Dividers ---------- */
.mcc-shape-divider {
  position: relative;
  overflow: hidden;
}

.mcc-shape-divider .shape-top,
.mcc-shape-divider .shape-bottom {
  position: absolute;
  left: 0;
  width: calc(100% + 1.3px);
  overflow: hidden;
  line-height: 0;
}

.mcc-shape-divider .shape-top {
  top: -1px;
}

.mcc-shape-divider .shape-bottom {
  bottom: -1px;
}

.mcc-shape-divider .shape-top svg,
.mcc-shape-divider .shape-bottom svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ---------- Icon Circle (decorative) ---------- */
.mcc-icon-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mcc-icon-circle img {
  width: 50px;
  max-width: 100%;
}

/* ---------- Buttons ---------- */
.mcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.mcc-btn--primary {
  background-color: var(--mcc-gold);
  color: var(--mcc-black);
}

.mcc-btn--primary:hover {
  background-color: #d49500;
  color: var(--mcc-black);
}

.mcc-btn--outline {
  background: transparent;
  color: var(--mcc-gold);
  border: 2px solid var(--mcc-gold);
}

.mcc-btn--outline:hover {
  background-color: var(--mcc-gold);
  color: var(--mcc-black);
}

/* ---------- Scroll to Top ---------- */
.mcc-scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 40px;
  height: 40px;
  background: var(--mcc-gold);
  color: var(--mcc-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
  border: none;
}

.mcc-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.mcc-scroll-top svg {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

/* ---------- Animations ---------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.6s ease both;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-600 { animation-delay: 600ms; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 28px; }
}

@media (max-width: 767px) {
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  h3 { font-size: 22px; }

  .mcc-section {
    padding: var(--section-padding-mobile);
  }



}

/* ==========================================
   HEADER
   ========================================== */
.mcc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--mcc-bg-dark);
}

.mcc-header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 30px;
  gap: 20px;
}

.mcc-logo img {
  height: 60px;
  width: auto;
}

/* -- Nav Menu -- */
.mcc-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.mcc-nav-menu > li {
  position: relative;
}

.mcc-nav-menu .menu-link {
  display: block;
  padding: 12px 16px;
  color: var(--mcc-white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  white-space: nowrap;
}

.mcc-nav-menu .menu-link:hover,
.mcc-nav-menu li.active > .menu-link {
  color: var(--mcc-gold);
}

/* -- Submenu -- */
.mcc-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--mcc-bg-dark);
  border-top: 2px solid var(--mcc-gold);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.has-submenu:hover > .mcc-submenu {
  display: block;
}

.mcc-submenu a {
  display: block;
  padding: 8px 20px;
  color: var(--mcc-white);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.mcc-submenu a:hover {
  color: var(--mcc-gold);
  background: rgba(255,255,255,0.05);
}

/* -- Header CTA -- */
.mcc-header-cta {
  display: inline-flex;
  padding: 8px 24px;
  background: var(--mcc-gold);
  color: var(--mcc-black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.3s;
}

.mcc-header-cta:hover {
  background: #d49500;
  color: var(--mcc-black);
  transform: scale(1.05);
}

/* -- Mobile Toggle -- */
.mcc-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mcc-menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: var(--mcc-white);
}

.mcc-menu-toggle .icon-close {
  display: none;
}

.mcc-menu-toggle[aria-expanded="true"] .icon-open { display: none; }
.mcc-menu-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 1024px) {
  .mcc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mcc-bg-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .mcc-nav.open {
    display: block;
  }

  .mcc-nav-menu {
    flex-direction: column;
    padding: 16px 0;
  }

  .mcc-nav-menu .menu-link {
    padding: 10px 30px;
  }

  .mcc-submenu {
    position: static;
    border: none;
    box-shadow: none;
    padding-left: 20px;
    display: block;
  }

  .mcc-header-cta {
    display: none;
  }

  .mcc-menu-toggle {
    display: block;
  }
}

/* ==========================================
   FOOTER
   ========================================== */

/* -- Footer CTA -- */
.mcc-footer-cta {
  background: var(--mcc-bg-dark);
  padding: 80px 30px 100px;
  text-align: center;
}

.mcc-footer-cta h2 {
  color: var(--mcc-white);
  font-family: var(--font-subheading);
  margin-bottom: 8px;
}

.mcc-footer-cta p {
  color: var(--mcc-text);
  margin-bottom: 24px;
}

.mcc-footer-cta .shape-fill {
  fill: var(--mcc-white);
}

/* -- Footer Main -- */
.mcc-footer-main {
  background: var(--mcc-bg-dark);
  padding: 60px 30px 40px;
}

.mcc-footer-grid {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.mcc-footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.mcc-footer-brand p {
  color: var(--mcc-text);
  font-size: 14px;
  line-height: 1.7;
}

.mcc-footer-col h4 {
  color: var(--mcc-white);
  font-family: var(--font-subheading);
  font-size: 18px;
  margin-bottom: 16px;
}

.mcc-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mcc-footer-col li {
  margin-bottom: 8px;
}

.mcc-footer-col a {
  color: var(--mcc-text);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.mcc-footer-col a:hover {
  color: var(--mcc-gold);
}

/* -- Footer Bottom -- */
.mcc-footer-bottom {
  background: var(--mcc-black);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.mcc-footer-bottom p {
  color: var(--mcc-text);
  font-size: 14px;
  margin: 0;
  text-align: center;
}

.mcc-footer-social {
  display: flex;
  gap: 12px;
}

.mcc-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--mcc-white);
  transition: all 0.3s;
}

.mcc-footer-social a:hover {
  background: var(--mcc-gold);
  color: var(--mcc-black);
}

.mcc-footer-social svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 767px) {
  .mcc-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .mcc-footer-brand {
    grid-column: 1 / -1;
  }

  .mcc-footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Card Grid ---------- */
.mcc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

@media (max-width: 1024px) {
  .mcc-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mcc-card-grid {
    grid-template-columns: 1fr;
  }
}

.mcc-card {
  background: var(--mcc-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mcc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mcc-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.mcc-card-body {
  padding: 20px;
}

.mcc-card-body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.4;
}

.mcc-card-body h3 a {
  color: var(--mcc-black);
  text-decoration: none;
  transition: color 0.3s;
}

.mcc-card-body h3 a:hover {
  color: var(--mcc-red);
}

.mcc-card-body p {
  font-size: 14px;
  color: var(--mcc-text);
  margin: 0 0 15px;
}

/* ---------- Link Cards ---------- */
.mcc-link-card {
  display: block;
  background: var(--mcc-white);
  border-radius: 12px;
  padding: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 4px solid var(--mcc-red);
}

.mcc-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mcc-link-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--mcc-black);
  margin: 0 0 8px;
}

.mcc-link-card p {
  font-size: 14px;
  color: var(--mcc-text);
  margin: 0;
}

/* ---------- Gallery Grid ---------- */
.mcc-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  .mcc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .mcc-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.mcc-gallery-item {
  border-radius: 8px;
  overflow: hidden;
}

.mcc-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.mcc-gallery-item:hover img {
  transform: scale(1.05);
}

/* ---------- Video Grid ---------- */
.mcc-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

@media (max-width: 767px) {
  .mcc-video-grid {
    grid-template-columns: 1fr;
  }
}

.mcc-video-embed {
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.mcc-video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ---------- Gallery Nav (landing page thumbnail cards) ---------- */
.mcc-gallery-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .mcc-gallery-nav {
    grid-template-columns: 1fr;
  }
}

.mcc-gallery-nav-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 16 / 9;
  background: #111;
}

.mcc-gallery-nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.28);
}

.mcc-gallery-nav-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s;
  filter: brightness(0.55);
}

.mcc-gallery-nav-card:hover .mcc-gallery-nav-card__bg {
  transform: scale(1.05);
}

.mcc-gallery-nav-card__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-heading, 'Kanit', sans-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mcc-gallery-nav-card__icon {
  width: 48px;
  height: 48px;
  fill: #fff;
  opacity: 0.9;
}

/* ---------- Social Links ---------- */
.mcc-social-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.mcc-social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: var(--mcc-white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

.mcc-social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mcc-social-card svg {
  width: 40px;
  height: 40px;
  fill: var(--mcc-red);
  margin-bottom: 15px;
}

.mcc-social-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--mcc-black);
  margin: 0 0 5px;
}

.mcc-social-card p {
  font-size: 13px;
  color: var(--mcc-text);
  margin: 0;
}

/* ---------- Two Column Layout ---------- */
.mcc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 767px) {
  .mcc-two-col {
    grid-template-columns: 1fr;
  }
}

/* ---------- Media Article Image ---------- */
.media-article-image {
  background-image: url('../wp-content/uploads/2025/08/imgi_5_gallery-photo4.jpg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  border-radius: 8px;
}

/* ---------- Text / Section Helpers ---------- */
.mcc-text-subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mcc-red);
  margin: 0 0 5px;
}

.mcc-section-dark {
  background: var(--mcc-bg-dark);
  color: var(--mcc-white);
  position: relative;
}

.mcc-section-dark h2 {
  color: var(--mcc-white);
}

.mcc-section-dark p {
  color: rgba(255,255,255,0.8);
}

.mcc-btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  background: var(--mcc-red);
  color: var(--mcc-white);
  transition: background 0.3s;
}

.mcc-btn:hover {
  background: #7a0613;
}

.mcc-btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ---------- Shape Dividers ---------- */
.mcc-shape-divider-top,
.mcc-shape-divider-bottom {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.mcc-shape-divider-top {
  top: -1px;
}

.mcc-shape-divider-bottom {
  bottom: -1px;
}

.mcc-shape-divider-top svg,
.mcc-shape-divider-bottom svg {
  width: 100%;
  height: 60px;
}

.elementor-shape-fill {
  fill: var(--mcc-bg-cream);
}
