/* NOXA FILM Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --black: #000000;
  --deep-black: #0a0a0a;
  --gold: #d4af37;
  --light-gold: #f8e9a1;
  --white: #ffffff;
  --transition-slow: 0.7s ease;
  --transition-medium: 0.5s ease;
  --transition-fast: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--white);
}

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: background-color var(--transition-medium);
}

.nav.scrolled {
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

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

.logo {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: -1;
}

.hero-content {
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
  animation-delay: 5s;
}

.hero-content.on-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1200px;
  z-index: 3;
  animation: none;
  opacity: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 40px;
  font-weight: 300;
  color: var(--white);
}

.cta-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.cta-btn {
  padding: 12px 30px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

/* Animation Elements */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sigil-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 600%;
  max-width: 6000px;
  height: 600%;
  max-height: 6000px;
  opacity: 0;
  z-index: 1;
}

.sigil-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.sigil-symbol {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--white);
  border-radius: 50%;
  transform-origin: center;
}

/* Featured Films Section */
.featured-films {
  padding: 100px 0;
  background-color: var(--deep-black);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 60px;
  color: var(--white);
}

.films-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(400px, 1fr));
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  max-width: 1400px;
}

.film-card {
  position: relative;
  height: 650px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  aspect-ratio: 2.5/4;
}

.film-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.film-card:hover .film-image {
  transform: scale(1.05);
}

.film-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transition: transform var(--transition-medium);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.film-card:hover .film-info {
  opacity: 1;
  transform: translateY(0);
}

.film-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity var(--transition-medium);
  z-index: 10;
  cursor: pointer;
}

.film-overlay.active {
  opacity: 1;
  display: flex;
}

.film-overlay-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.film-cta {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all var(--transition-fast);
}

.film-cta:hover {
  background-color: var(--white);
  color: var(--black);
};
}

.film-card:hover .film-overlay {
  transform: translateY(-20px);
}

.film-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--white);
}

.film-description {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-medium);
}

.film-card:hover .film-description {
  opacity: 1;
  transform: translateY(0);
}

.film-btn {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all var(--transition-fast);
}

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

/* Other Films Section */
.other-films {
  padding: 100px 0;
  background-color: var(--black);
}

.films-carousel {
  position: relative;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.films-carousel .film-card {
  max-width: 1400px;
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.film-card-image-container {
  width: 100%;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.films-carousel .film-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transform: scale(0.85);
}

.film-card-footer {
  padding: 15px;
  text-align: center;
  border-top: none;
}

.film-production-status {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  color: var(--white);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--deep-black);
}

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

.about-text {
  font-size: 16px;
  line-height: 1.8;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  width: 100%;
  height: auto;
}

/* Join Section */
.join {
  padding: 100px 0;
  background: linear-gradient(to bottom, var(--black), rgba(20, 20, 20, 0.9));
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.join-card {
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  transition: transform var(--transition-medium);
}

.join-card:hover {
  transform: translateY(-10px);
  border-color: var(--white);
}

.join-title {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--white);
}

.join-text {
  font-size: 14px;
  margin-bottom: 30px;
}

/* Stay Connected Section */
.stay-connected {
  padding: 80px 0;
  background-color: var(--deep-black);
  text-align: center;
}

.subscription-container {
  max-width: 600px;
  margin: 0 auto;
}

.subscription-text {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.subscription-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.subscription-input {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 16px;
  width: 100%;
  transition: border-color var(--transition-fast);
}

.subscription-input:focus {
  outline: none;
  border-color: var(--white);
}

.subscription-btn {
  padding: 15px 30px;
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  width: 100%;
}

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

@media (min-width: 768px) {
  .subscription-form {
    flex-direction: row;
  }
  
  .subscription-input {
    flex: 1;
  }
  
  .subscription-btn {
    width: auto;
  }
}

/* Footer */
.footer {
  padding: 50px 0;
  background-color: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-link {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background-color: var(--white);
  border-color: var(--white);
}

.social-link i {
  font-size: 14px;
  color: var(--white);
  transition: color var(--transition-fast);
}

.social-link:hover i {
  color: var(--black);
}

.copyright {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

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

@keyframes scaleIn {
  from {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .cta-container {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
