/* Base Styles & Variables */
:root {
  --black: #0a0a0a;
  --dark-bg: #141414;
  --medium-dark: #1f1f1f;
  --gold: #d4af37;
  --gold-light: #e8c863;
  --rose-gold: #b98d6f;
  --cream: #f5f2ed;
  --text-light: #e8e8e8;
  --text-muted: #a8a8a8;
  --border-ornate: #8b7355;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Cormorant Garamond', serif;
  background-color: var(--black);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
}

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

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-ornate);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-light);
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.nav-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--gold);
  position: absolute;
  transition: all 0.3s ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('assets/hero-bg-new.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0.7) 0%, 
    rgba(10, 10, 10, 0.5) 50%, 
    rgba(10, 10, 10, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.logo-container {
  margin-bottom: 2rem;
}

.hero-logo {
  width: min(400px, 80vw);
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--cream);
  font-style: italic;
}

.ornamental-divider {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.divider-element {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--gold) 20%, 
    var(--gold) 80%, 
    transparent);
  position: relative;
}

.divider-element::before,
.divider-element::after {
  content: '◆';
  position: absolute;
  color: var(--gold);
  font-size: 12px;
  top: -6px;
}

.divider-element::before { left: 45%; }
.divider-element::after { right: 45%; }

/* About Section */
.about-section {
  padding: 5rem 0;
  background: var(--dark-bg);
  position: relative;
}

.ornate-frame {
  background: linear-gradient(135deg, 
    rgba(31, 31, 31, 0.9), 
    rgba(20, 20, 20, 0.9));
  border: 2px solid var(--border-ornate);
  border-radius: 10px;
  padding: 3rem;
  position: relative;
  box-shadow: 
    inset 0 0 30px rgba(212, 175, 55, 0.1),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

.ornate-frame::before,
.ornate-frame::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid var(--border-ornate);
}

.ornate-frame::before {
  top: -10px;
  left: -10px;
  border-right: none;
  border-bottom: none;
}

.ornate-frame::after {
  bottom: -10px;
  right: -10px;
  border-left: none;
  border-top: none;
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
}

.lead-text {
  text-align: center;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Why Section */
.why-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--dark-bg), var(--black));
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.centered-text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.gallery-subtitle {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rose-gold);
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 1rem;
}

.gallery-item {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.gallery-item[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.gallery-frame {
  position: relative;
  border: 2px solid var(--gold);
  padding: 0.5rem;
  background: var(--black);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

.gallery-frame::before,
.gallery-frame::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gold);
  transition: all 0.4s ease;
  z-index: 2;
}

.gallery-frame::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.gallery-frame::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.gallery-frame:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
  border-color: var(--gold-light);
}

.gallery-frame:hover::before,
.gallery-frame:hover::after {
  width: 30px;
  height: 30px;
}

.gallery-frame img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: grayscale(0.2) brightness(0.9);
}

.gallery-frame:hover img {
  transform: scale(1.1);
  filter: grayscale(0) brightness(1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-frame:hover .gallery-overlay {
  opacity: 1;
}

.overlay-text {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-frame:hover .overlay-text {
  transform: translateY(0);
}

/* Gallery Responsive */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .gallery-frame img {
    height: 300px;
  }

  .gallery-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-frame img {
    height: 280px;
  }
}

/* Casting Section */
.casting-section {
  padding: 5rem 0;
  background: var(--medium-dark);
  position: relative;
}

.casting-frame {
  background: rgba(10, 10, 10, 0.8);
  border: 3px solid var(--border-ornate);
  border-radius: 15px;
  padding: 3rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.casting-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.casting-lead {
  text-align: center;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 2rem;
  font-style: italic;
}

.benefits-list {
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.benefit-item .icon {
  color: var(--gold);
  margin-right: 1rem;
  font-size: 1.5rem;
}

.benefit-item strong {
  color: var(--gold);
  margin-right: 0.5rem;
}

/* Form Styles */
.casting-form {
  margin-top: 2rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
  position: relative;
}

.form-group label {
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(245, 242, 237, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--text-light);
  padding: 0.75rem;
  border-radius: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(245, 242, 237, 0.1);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

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

.word-count {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.file-label {
  display: block;
  background: rgba(212, 175, 55, 0.1);
  border: 2px dashed rgba(212, 175, 55, 0.4);
  padding: 1rem;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s ease;
}

.file-label:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
}

.file-label input[type="file"] {
  display: none;
}

.checkbox-group {
  margin: 2rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  cursor: pointer;
  color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.75rem;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold), var(--rose-gold));
  color: var(--black);
  border: none;
  padding: 1rem 3rem;
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 2rem auto 0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
}

.form-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Social Section */
.social-section {
  padding: 4rem 0;
  background: var(--dark-bg);
  text-align: center;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.social-link {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid var(--border-ornate);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

.social-handle {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 1rem;
}

/* Footer */
.footer {
  padding: 2rem 0;
  background: var(--black);
  text-align: center;
  border-top: 1px solid var(--border-ornate);
  position: relative;
}

.footer-ornament {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: var(--gold);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--medium-dark);
  border: 2px solid var(--gold);
  border-radius: 10px;
  padding: 2rem;
  max-width: 500px;
  text-align: center;
}

.modal-content h3 {
  color: var(--gold);
  margin-bottom: 1rem;
}

.modal-close {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.5rem 2rem;
  margin-top: 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gold-light);
}

/* Form Subsection Styles */
.form-subsection {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin: 1.5rem 0 0.5rem 0;
  text-align: center;
  font-weight: 600;
}

.file-name {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-style: italic;
}

/* Progress Bar Styles */
.progress-container {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--gold);
  border-radius: 8px;
}

.progress-bar {
  width: 100%;
  height: 30px;
  background: var(--medium-dark);
  border: 2px solid var(--gold);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s ease;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-text {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    transition: right 0.3s ease;
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
    transform-origin: center;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
    transform-origin: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .ornate-frame {
    padding: 2rem 1.5rem;
  }

  .casting-frame {
    padding: 2rem 1.5rem;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
  }
}