/* NOXA FILM Terms of Service Page 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(--deep-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);
  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;
}

/* Terms Page Styles */
.terms-page {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: var(--deep-black);
}

.terms-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
}

.last-updated {
  text-align: center;
  font-size: 14px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.terms-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--white);
}

.terms-content h4 {
  font-size: 18px;
  margin-top: 25px;
  margin-bottom: 10px;
  color: var(--white);
}

.terms-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--white);
}

.terms-content ul, .terms-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.terms-content li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.terms-content a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: border-color var(--transition-fast);
}

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

.terms-content strong {
  font-weight: 600;
}

/* 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);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  
  .terms-content {
    padding: 0 15px;
  }
  
  .terms-page h1 {
    font-size: 28px;
  }
  
  .terms-content h2 {
    font-size: 22px;
  }
  
  .terms-content h3 {
    font-size: 18px;
  }
  
  .terms-content p, .terms-content li {
    font-size: 15px;
  }
}
