/* 
   Trembita Media Stylesheet
   Theme: Cinematic Warm Gray & Warm Gold (Light Mode)
   Typography: Roboto (Google Fonts)
 */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  --bg-primary: #f5f6f8;       /* Clean warm light gray background */
  --bg-secondary: #ffffff;     /* Pure white for sections & cards */
  --bg-tertiary: #eaecef;      /* Slightly darker gray for input background/card headers/lines */
  --accent-gold: #c68512;      /* Elegant, deeper warm gold for light background readability */
  --accent-gold-hover: #a16b0a; /* Darker warm gold for hover states */
  --accent-gold-glow: rgba(198, 133, 18, 0.15);
  --text-primary: #111827;     /* Dark charcoal/almost black for maximum readability */
  --text-secondary: #4b5563;   /* Slate/darker gray for body text */
  --text-muted: #8c96a3;       /* Muted gray for small labels, footers */
  --border-light: rgba(198, 133, 18, 0.12); /* Delicate gold-infused light borders */
  --border-gold: rgba(198, 133, 18, 0.4);   /* Stronger gold accents */
  --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 4px 20px rgba(198, 133, 18, 0.10);
}

/* Base Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, textarea {
  font-family: inherit;
  outline: none;
}

ul {
  list-style: none;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

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

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

/* Header & Glassmorphic Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: rgba(245, 246, 248, 0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  height: 70px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 55px;
  aspect-ratio: 1.58;
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 48px;
}

.logo-text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 9px; }
.mobile-toggle span:nth-child(3) { top: 18px; }

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-secondary);
    border-left: 1px solid var(--border-light);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.10);
  }

  .nav-menu.open {
    right: 0;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 75% 30%, #e2e5ea 0%, var(--bg-primary) 70%);
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--border-light) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: inline-block;
}

.hero-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-title .highlight {
  background: linear-gradient(90deg, var(--text-primary) 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
  border: 1px solid var(--accent-gold);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(198, 133, 18, 0.30);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.03);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn {
    width: 100%;
  }
}

/* About / Content Section */
.about-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}

.about-text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.illustration-bg {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.about-svg-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.12));
  transition: var(--transition);
}

.about-svg-container:hover {
  transform: scale(1.03) rotate(1deg);
}

/* Cards Section / Catalog Features */
.features-section {
  background-color: var(--bg-primary);
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

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

@media (max-width: 640px) {
  .grid-cards {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 166, 35, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  color: var(--accent-gold);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.card-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contacts Section */
.contacts-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  position: relative;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
}

@media (max-width: 992px) {
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 20px;
  color: var(--accent-gold);
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.contact-details h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.contact-details p, .contact-details a {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-details a:hover {
  color: var(--accent-gold);
}

/* High-end Form */
.contact-form-container {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  position: relative;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group.textarea {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-primary);
  font-size: 15px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--accent-gold);
  background-color: var(--bg-secondary);
  box-shadow: 0 0 10px rgba(198, 133, 18, 0.05);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  color: #10b981;
  display: block;
}

.form-status.error {
  color: #ef4444;
  display: block;
}

/* Footer Section */
footer {
  background-color: var(--bg-primary);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  height: 40px;
  aspect-ratio: 1.58;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-muted);
}

/* screening.html specific: Cinema Grid and Mockup */
.screening-header-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 40px;
  background: linear-gradient(180deg, #eaecef 0%, var(--bg-primary) 100%);
  text-align: center;
}

.screening-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
}

.screening-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Category Filters Mock */
.catalog-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
}

/* Screenings Grid (inspired by MK Media Group catalog grid) */
.cinema-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

@media (max-width: 1200px) {
  .cinema-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .cinema-grid {
    grid-template-columns: 1fr;
  }
}

/* Poster Card styles */
.cinema-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.cinema-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-glow);
}

.poster-wrapper {
  position: relative;
  width: 100%;
  padding-top: 140%; /* 1:1.4 aspect ratio typical for cinema posters */
  background: var(--bg-tertiary);
  overflow: hidden;
}

.poster-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

/* Decorative backdrop overlays representing different cinematic templates */
.poster-p1 { background: linear-gradient(45deg, #1e3c72 0%, #2a5298 100%); }
.poster-p2 { background: linear-gradient(45deg, #11998e 0%, #38ef7d 100%); }
.poster-p3 { background: linear-gradient(45deg, #e65c00 0%, #f9d423 100%); }
.poster-p4 { background: linear-gradient(45deg, #8a2387 0%, #e94057 100%, #f27121 100%); }
.poster-p5 { background: linear-gradient(45deg, #0f2027 0%, #203a43 50%, #2c5364 100%); }
.poster-p6 { background: linear-gradient(45deg, #3a1c1c 0%, #5d2525 50%, #903c3c 100%); }
.poster-p7 { background: linear-gradient(45deg, #42275a 0%, #734b6d 100%); }
.poster-p8 { background: linear-gradient(45deg, #1d976c 0%, #93f9b9 100%); }

.poster-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 17, 30, 0.95) 0%, rgba(11, 17, 30, 0.4) 50%, rgba(11, 17, 30, 0.1) 100%);
  z-index: 2;
}

.poster-meta {
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.badge {
  background-color: rgba(245, 166, 35, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.runtime {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 500;
}

.poster-svg-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.cinema-card:hover .poster-svg-icon {
  background-color: var(--accent-gold);
  color: var(--bg-primary);
  border-color: var(--accent-gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 20px var(--accent-gold-glow);
}

.cinema-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.cinema-tag {
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.cinema-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cinema-synopsis {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cinema-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}

.cinema-region {
  font-weight: 500;
}

/* Elegant Under Construction Notice overlay */
.construction-notice {
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 40px;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.construction-notice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background-color: var(--accent-gold);
}

.notice-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(245, 166, 35, 0.1);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.notice-title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

.notice-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.notice-desc a {
  color: var(--accent-gold);
  font-weight: 700;
  text-decoration: underline;
}

.notice-desc a:hover {
  color: var(--accent-gold-hover);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom CSS Utility Classes to replace inline style attributes */
.nav-btn-contact {
  padding: 8px 16px;
  font-size: 12px;
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.logo-crest {
  width: 100%;
  height: auto;
}

.section-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

.contact-intro-p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

.btn-email-sales {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card-item {
  padding: 24px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin: 0;
}

.contact-card-icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.contact-card-title {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.contact-card-text {
  color: var(--text-primary);
  font-weight: 500;
}

.contact-card-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
}

.contact-card-link-bold {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 16px;
  text-decoration: underline;
}

.footer-logo-text {
  font-size: 16px;
}

/* Fix 3: Handle instant dynamic hiding without setTimeouts and transitions race states */
.cinema-card {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
}

.cinema-card.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  display: none !important;
}
