/* CSS Variables for Premium Design */
:root {
  --primary-color: #0A192F; /* Deep Navy */
  --secondary-color: #D4AF37; /* Gold */
  --accent-color: #112240; /* Lighter Navy */
  --text-primary: #CCD6F6; /* Light gray-blue for dark mode */
  --text-secondary: #8892B0; /* Muted text */
  --bg-color: #020C1B; /* Very dark background */
  --card-bg: rgba(17, 34, 64, 0.7); /* Glassmorphism background */
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  color: #E6F1FF;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

h2:hover::after {
  width: 100%;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

/* Header and Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(2, 12, 27, 0.9);
  backdrop-filter: blur(10px);
  padding: 1rem 5%;
  border-bottom: 1px solid var(--glass-border);
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

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

nav ul {
  display: flex;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  color: var(--text-primary);
}

nav a::before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--secondary-color);
  transition: var(--transition);
}

nav a:hover::before, nav a.active::before {
  width: 100%;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  position: relative;
  background-image: url('../assets/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(2,12,27,0.95) 0%, rgba(2,12,27,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content h1 span {
  color: var(--secondary-color);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
  background: transparent;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: var(--primary-color);
}

/* Sections */
section {
  padding: 6rem 10%;
}

.section-container {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
}

/* Director Section specific */
.director-image {
  flex: 1;
  position: relative;
}

.director-image img {
  width: 100%;
  border-radius: 12px;
  filter: grayscale(20%);
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.director-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  z-index: -1;
  transition: var(--transition);
}

.director-image:hover img {
  filter: grayscale(0%);
  transform: translate(-10px, -10px);
}

.director-image:hover::after {
  transform: translate(10px, 10px);
}

.director-info {
  flex: 1;
}

/* Press Releases */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.press-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.press-date {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.press-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #E6F1FF;
}

.press-excerpt {
  flex-grow: 1;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: 1.5rem;
}

.read-more svg {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover svg {
  transform: translateX(5px);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid var(--glass-border);
  background: var(--primary-color);
}

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

/* Responsive */
@media (max-width: 900px) {
  .section-container {
    flex-direction: column;
  }
  
  h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background: var(--primary-color);
    flex-direction: column;
    padding: 6rem 2rem;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  
  nav ul.show {
    right: 0;
  }
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #fff;
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* Flash Banner */
.flash-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--secondary-color);
  padding: 0.5rem 5%;
  display: flex;
  align-items: center;
  z-index: 1001;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.flash-label {
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  animation: flash 1.5s infinite;
  white-space: nowrap;
  z-index: 2;
}

.flash-text-container {
  overflow: hidden;
  white-space: nowrap;
  margin-left: 1rem;
  flex-grow: 1;
}

#flash-text {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  padding-left: 100%;
  animation: scrollText 20s linear infinite;
}

#flash-text:hover {
  text-decoration: underline;
  animation-play-state: paused;
}

@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes scrollText {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-100%, 0); }
}

/* Formal Press Cards for Newsroom */
.newsroom-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.formal-press-card {
  display: flex;
  flex-direction: column;
  background: rgba(10, 25, 47, 0.4);
  border-left: 3px solid var(--secondary-color);
  border-top: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 2.5rem 3rem;
  transition: var(--transition);
}

.formal-press-card:hover {
  transform: translateX(10px);
  background: rgba(17, 34, 64, 0.6);
  border-color: var(--secondary-color);
}

.formal-press-date {
  color: var(--secondary-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.formal-press-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #E6F1FF;
  font-family: Georgia, serif;
  line-height: 1.3;
  font-weight: normal;
}

.formal-press-excerpt {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.formal-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
}

.formal-read-more svg {
  margin-left: 10px;
  transition: var(--transition);
}

.formal-read-more:hover svg {
  transform: translateX(5px);
}

/* Share Links */
.press-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.share-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.share-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-links a {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.share-links a:hover {
  color: var(--secondary-color);
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}


