* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: Roboto, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.5;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  padding: 6px 0;
  font-size: 12px;
}

.top-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.top-menu a {
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.top-menu a:hover { text-decoration: underline; }
.top-menu a.highlight { color: #c41e3a; font-weight: 700; }

.main-header {
  background: #fff;
  border-bottom: 3px solid #c41e3a;
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 320px;
}

.brand-logo {
  height: 56px;
  width: auto;
}

.brand-text { display: grid; gap: 2px; }
.brand-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
  color: #111;
  line-height: 1.05;
}

.main-menu ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.main-menu a {
  text-decoration: none;
  color: #111;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 2px;
}

.main-menu a:hover { color: #c41e3a; }
.main-menu a.is-active {
  color: #c41e3a;
  border-bottom: 2px solid #c41e3a;
}

.hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(60, 75, 90, 0.95);
  padding: 18px 34px;
  min-width: 520px;
}

.hero-badge h1 {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page { padding: 32px 0 60px; }

.intro { margin: 12px 0 22px; }
.kicker { color: #333; font-size: 15px; }

.section { margin-top: 28px; }
.section h2 {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.muted { color: #666; font-size: 14px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.card {
  border: 1px solid #e9e9e9;
  background: #fff;
  padding: 18px;
}

.card h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.card p { color: #333; font-size: 14px; }

.list { margin: 10px 0 14px; padding-left: 18px; }
.list li { margin: 6px 0; font-size: 14px; }

.link {
  display: inline-block;
  margin-top: 10px;
  color: #c41e3a;
  text-decoration: none;
  font-weight: 700;
}
.link:hover { text-decoration: underline; }

.btn {
  display: inline-block;
  margin-top: 14px;
  background: #c41e3a;
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}
.btn:hover { filter: brightness(0.95); }

.btn-ghost {
  background: transparent;
  color: #c41e3a;
  border: 2px solid #c41e3a;
}

.chips {
  display: grid;
  grid-template-columns: repeat(8, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.chip {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  padding: 10px;
}

.chip-purple { background: #6a5aa7; }
.chip-pink   { background: #cf3c6b; }
.chip-green  { background: #9dbd3b; }
.chip-teal   { background: #4aa0a6; }
.chip-gold   { background: #d4a428; }
.chip-dark   { background: #2b3a45; }
.chip-red    { background: #b63b3b; }

.footer {
  border-top: 1px solid #e6e6e6;
  background: #fff;
  padding: 18px 0;
  font-size: 13px;
  color: #444;
}
.footer-inner { display: flex; justify-content: center; }

@media (max-width: 1100px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .main-menu ul { justify-content: flex-start; }
  .hero-badge { min-width: 420px; }
  .hero-badge h1 { font-size: 26px; }
  .chips { grid-template-columns: repeat(4, minmax(140px, 1fr)); }
}

@media (max-width: 768px) {
  .top-menu { justify-content: flex-start; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { height: 320px; }
  .hero-badge { position: static; width: 100%; min-width: 0; }
  .hero-badge h1 { font-size: 22px; }
  .chips { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
}

/* Magazine Section */
.magazine-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.magazine-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  text-align: center;
  border-bottom: 3px solid #c41e3a;
  display: inline-block;
  padding-bottom: 10px;
}

.magazine-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.magazine-container-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.magazine-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.magazine-images-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.magazine-image {
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.magazine-description {
  max-width: 600px;
  padding: 20px;
  background-color: white;
  border-left: 4px solid #c41e3a;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.magazine-description p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Video Section */
.video-section {
  padding: 60px 0;
}

.video-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 3px solid #c41e3a;
  display: inline-block;
  padding-bottom: 10px;
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.video-container {
  display: flex;
  justify-content: center;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.interview-video {
  width: 100%;
  max-width: 900px;
}

/* Social Media Section */
.social-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.social-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  border-bottom: 3px solid #c41e3a;
  display: inline-block;
  padding-bottom: 10px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.social-post {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  background-color: #f0f0f0;
  border-bottom: 2px solid #c41e3a;
}

.social-header .icon {
  font-size: 1.5rem;
}

.social-header span {
  font-weight: 600;
  color: #333;
}

.social-content {
  padding: 20px;
}

.social-image {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 4px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.instagram-image {
  height: 250px;
  object-fit: cover;
  margin-bottom: 0;
}

.social-image:hover {
  opacity: 0.85;
  transform: scale(1.02);
}

.social-caption {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.social-link {
  display: inline-block;
  color: #c41e3a;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #8b1528;
}

/* Main Content */
.main-content {
  background-color: white;
}


.footer {
  background-color: #3d4a5c;
  color: white;
  padding: 40px 0 0;
  margin-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-left {
  display: flex;
  justify-content: flex-start;
}

.footer-branding h3 {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.footer-branding p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.footer-center {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-menu a:hover {
  color: white;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-logos {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
  opacity: 0.8;
}

.footer-logo {
  height: 50px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-menu {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 0;
  }

  .footer-menu {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .footer-menu a {
    font-size: 0.8rem;
  }

  .footer-social {
    gap: 10px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

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

  .footer-logos {
    gap: 10px;
  }

  .footer-logo {
    height: 40px;
  }
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #bbb;
}
