/* ELENCO Talent Agency - Shared Styles */

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

/* Color Palette - Theatrical aesthetic */
:root {
  --gold: #d4af37;
  --gold-light: #f4e4bc;
  --burgundy: #5a1515;
  --dark: #1a1a1a;
  --dark-bg: #1a1a1a;
  --cream: #faf7f0;
  --shadow: rgba(0, 0, 0, 0.7);
}

/* Import elegant fonts */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Montserrat:wght@300;400;600&display=swap");

body {
  font-family: "Playfair Display", serif;
  background: var(--dark-bg);
  color: var(--cream);
  overflow-x: hidden;
}

/* Navigation Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.header-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.15em;
  font-family: "Playfair Display", serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.header-logo:hover {
  color: var(--gold-light);
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 80%;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav a.active {
  color: var(--gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.language-selector button {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  border-radius: 4px;
  min-width: 50px;
}

.language-selector button:hover {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.language-selector button.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.language-separator {
  color: rgba(212, 175, 55, 0.5);
  font-weight: 300;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(90, 21, 21, 0.4) 100%),
    radial-gradient(circle at top, #2a0808 0%, #1a1a1a 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(90, 21, 21, 0.12) 40px,
    rgba(90, 21, 21, 0.12) 80px
  );
  animation: curtain 20s linear infinite;
}

@keyframes curtain {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(80px);
  }
}

.logo-container {
  position: relative;
  z-index: 10;
  animation: fadeInUp 1.5s ease-out;
  transition: all 0.5s ease;
}

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

.logo {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow:
    3px 3px 6px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(212, 175, 55, 0.5);
  letter-spacing: 0.15em;
  margin-bottom: 0.2em;
  font-family: "Playfair Display", serif;
  transition: all 0.5s ease;
}

.logo.shrink {
  font-size: 2rem;
}

.tagline {
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 3rem;
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 10;
  position: relative;
}

.hero-text p {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  line-height: 2;
  color: var(--cream);
  margin: 0 0 2rem 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  opacity: 0.95;
  text-align: center;
}

.hero-text .highlight {
  color: var(--gold);
  font-weight: 400;
}

/* Footer */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 2rem;
  text-align: center;
}

.footer-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: rgba(250, 247, 240, 0.7);
  letter-spacing: 0.05em;
}

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Card Styles */
.card {
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  background: rgba(212, 175, 55, 0.1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem 2rem;
    gap: 1rem;
    transition: right 0.3s ease;
    z-index: 999;
  }

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

  .main-nav a {
    width: 100%;
    padding: 1rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  }

  .language-selector {
    flex-direction: column;
    width: 100%;
  }

  .language-selector button {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }
}
