/* Corte Chilenero - Minimal Dark Urban Theme */
:root {
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #2a2a2a;
  --light-gray: #999;
  --white: #f5f5f5;
  --red: #d32f2f;
  --blue: #0051ba;
  --accent: #ff1744;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* Header & Navigation */
header {
  background-color: var(--dark-gray);
  border-bottom: 2px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--accent);
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  min-height: 70vh;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--medium-gray);
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--light-gray);
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--light-gray);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
  border: 2px solid var(--red);
}

.btn:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--black);
}

.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0;
}

/* Content Sections */
.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  border-left: 4px solid var(--red);
  padding-left: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.content-section h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--white);
  font-weight: 700;
}

.content-section h4 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--light-gray);
  font-weight: 600;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--light-gray);
  line-height: 1.8;
}

.content-section ul, .content-section ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--light-gray);
}

.content-section li {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.content-section a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.2s;
}

.content-section a:hover {
  color: var(--white);
}

/* Official Statement Box */
.statement-box {
  background-color: var(--dark-gray);
  border-left: 4px solid var(--blue);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.statement-box p {
  color: var(--white);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.team-member {
  background-color: var(--dark-gray);
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--medium-gray);
  transition: transform 0.2s;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.team-member h4 {
  color: var(--white);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.team-member p {
  color: var(--light-gray);
  margin: 0;
  font-size: 0.95rem;
}

/* Timeline / Hitos */
.timeline {
  border-left: 2px solid var(--medium-gray);
  padding-left: 2rem;
  margin: 2rem 0;
}

.timeline li {
  margin-bottom: 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background-color: var(--red);
  border-radius: 50%;
  border: 2px solid var(--black);
}

/* FAQ */
.faq {
  margin: 2rem 0;
}

.faq-item {
  background-color: var(--dark-gray);
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  border-left: 3px solid var(--red);
}

.faq-item h3 {
  color: var(--white);
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: var(--light-gray);
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.social-links a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--medium-gray);
  color: var(--white);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s;
  border: 1px solid var(--medium-gray);
}

.social-links a:hover {
  background-color: var(--dark-gray);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Backlinks Section */
.backlinks-grid {
  display: grid;
  gap: 1.5rem;
  margin: 2rem 0;
}

.backlink-category {
  background-color: var(--dark-gray);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid var(--red);
}

.backlink-category h3 {
  margin-top: 0;
  color: var(--white);
}

.backlink-category ul {
  margin-left: 1.5rem;
}

/* Contact Form Placeholder */
.contact-info {
  background-color: var(--dark-gray);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.contact-info a {
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  border-top: 2px solid var(--red);
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

footer p {
  color: var(--light-gray);
  margin: 0.5rem 0;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero .tagline {
    font-size: 1.1rem;
  }

  nav ul {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .logo img {
    height: 40px;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    text-align: center;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  main {
    padding: 1.5rem 1rem;
  }
}

/* ============================================
   IMAGE PLACEHOLDERS & CONTAINERS
   ============================================ */

/* Hero Banner - Full width dramatic image */
.hero-banner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto 3rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(211, 47, 47, 0.3);
}

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

/* Feature Image - Medium size for sections */
.feature-image {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--medium-gray);
}

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

/* Event Gallery Grid - Multiple event photos */
.event-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.event-gallery-item {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--medium-gray);
  transition: transform 0.3s, border-color 0.3s;
  background-color: var(--dark-gray);
}

.event-gallery-item:hover {
  transform: translateY(-4px);
  border-color: var(--red);
}

.event-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.event-gallery-item .caption {
  padding: 1rem;
  color: var(--light-gray);
  font-size: 0.9rem;
  text-align: center;
}

/* Team Member Photos */
.team-member-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 2px solid var(--medium-gray);
}

.team-member:hover .team-member-photo {
  border-color: var(--red);
}

/* Press/Media Logos Grid */
.media-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
  padding: 2rem;
  background-color: var(--dark-gray);
  border-radius: 8px;
}

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: var(--medium-gray);
  border-radius: 4px;
  transition: transform 0.2s;
}

.media-logo:hover {
  transform: scale(1.05);
}

.media-logo img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.2s;
}

.media-logo:hover img {
  filter: grayscale(0%) brightness(100%);
}

/* Inline Content Images - Float left/right with text wrap */
.content-image-left,
.content-image-right {
  max-width: 400px;
  margin: 1rem;
  border-radius: 8px;
  border: 2px solid var(--medium-gray);
}

.content-image-left {
  float: left;
  margin-left: 0;
}

.content-image-right {
  float: right;
  margin-right: 0;
}

.content-image-left img,
.content-image-right img {
  width: 100%;
  height: auto;
  display: block;
}

/* Image Placeholder Style - For development */
.img-placeholder {
  background: linear-gradient(135deg, var(--medium-gray) 25%, var(--dark-gray) 25%, var(--dark-gray) 50%, var(--medium-gray) 50%, var(--medium-gray) 75%, var(--dark-gray) 75%);
  background-size: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 700;
  text-align: center;
  font-size: 0.9rem;
  padding: 2rem;
  border: 2px dashed var(--red);
}

/* Responsive Images */
@media (max-width: 768px) {
  .hero-banner {
    margin-bottom: 2rem;
  }

  .event-gallery {
    grid-template-columns: 1fr;
  }

  .event-gallery-item img {
    height: 200px;
  }

  .content-image-left,
  .content-image-right {
    float: none;
    max-width: 100%;
    margin: 1.5rem 0;
  }

  .media-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .team-member-photo {
    height: 220px;
  }
}

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

  .event-gallery-item img {
    height: 180px;
  }
}
