/* Aviator Site - Aviation Theme */

:root {
  --primary-blue: #1e3a8a;
  --secondary-orange: #f97316;
  --dark-bg: #0f172a;
  --card-bg: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --accent-cyan: #06b6d4;
  --border-color: #334155;
}

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

body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.animated-bg::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, rgba(249,115,22,0.05) 1px, transparent 1px),
    linear-gradient(rgba(249,115,22,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); }
}

/* Header */
header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--secondary-orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.2);
}

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

.logo {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary-orange);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo::before {
  content: '✈️';
  font-size: 2rem;
  animation: planeFly 3s ease-in-out infinite;
}

@keyframes planeFly {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

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

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

nav a:hover,
nav a.active {
  color: var(--secondary-orange);
}

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

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--secondary-orange);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '✈';
  position: absolute;
  font-size: 15rem;
  color: rgba(249, 115, 22, 0.05);
  animation: heroPlane 20s linear infinite;
  pointer-events: none;
}

@keyframes heroPlane {
  0% { 
    left: -10%;
    top: 20%;
    transform: rotate(0deg);
  }
  100% { 
    left: 110%;
    top: 80%;
    transform: rotate(360deg);
  }
}

.hero-content {
  max-width: 900px;
  z-index: 2;
  animation: fadeInUp 1s ease;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--secondary-orange);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 40px rgba(249, 115, 22, 0.5);
  line-height: 1.2;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Image/Video Placeholder */
.media-placeholder {

margin: 2rem auto 0;
border-radius: 20px;
border: 2px solid var(--poker-gold);
overflow: hidden;
background-color: var(--card-bg);
}


.media-placeholder img {
width: 100%;
height: 100%;
object-fit: contain;
display: block;
}




.media-placeholder::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(249,115,22,0.1), transparent);
  animation: shimmer 3s infinite;
}

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

/* Main Content */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

section {
  margin: 5rem 0;
}

h2 {
  font-size: 2.5rem;
  color: var(--secondary-orange);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary-orange), transparent);
}

h3 {
  font-size: 1.8rem;
  color: var(--accent-cyan);
  margin: 2rem 0 1rem;
}

h4 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin: 1.5rem 0 1rem;
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

/* Content Cards */
.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem 0;
  transition: all 0.3s ease;
}

.content-card:hover {
  border-color: var(--secondary-orange);
  box-shadow: 0 10px 40px rgba(249, 115, 22, 0.2);
}

/* Info Box */
.info-box {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(249, 115, 22, 0.1));
  border-left: 4px solid var(--secondary-orange);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.info-box p {
  margin: 0;
  color: var(--text-primary);
}

/* Lists */
ul, ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

li {
  margin: 0.8rem 0;
  color: var(--text-secondary);
  line-height: 1.7;
}

li strong {
  color: var(--text-primary);
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background: linear-gradient(135deg, var(--primary-blue), rgba(249, 115, 22, 0.3));
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--secondary-orange);
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
}

tr:hover {
  background: rgba(249, 115, 22, 0.05);
}

/* Footer */
footer {
  background: var(--card-bg);
  border-top: 2px solid var(--secondary-orange);
  padding: 3rem 2rem;
  margin-top: 5rem;
  text-align: center;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary-orange), #fb923c);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
  background: linear-gradient(135deg, #fb923c, var(--secondary-orange));
}

.social-icon svg {
  width: 22px;
  height: 22px;
}

footer p {
  color: var(--text-secondary);
  margin: 0.5rem 0;
}

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

footer a:hover {
  color: var(--accent-cyan);
}
/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--secondary-orange), #fb923c);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.6);
}

.scroll-to-top::before {
  content: '↑';
  font-size: 1.8rem;
  font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 992px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--card-bg);
    padding: 5rem 2rem;
    transition: right 0.4s ease;
    border-left: 2px solid var(--secondary-orange);
  }
  
  nav.active { right: 0; }
  nav ul { flex-direction: column; gap: 1rem; }
  .menu-toggle { display: flex; z-index: 1001; }
  
  .hero h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .media-placeholder { height: 300px; }
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  
  table { font-size: 0.9rem; }
  th, td { padding: 0.75rem; }
}


/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  background: linear-gradient(135deg, var(--secondary-orange), #fb923c);
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.6);
  background: linear-gradient(135deg, #fb923c, var(--secondary-orange));
}

.cta-button:active {
  transform: translateY(0);
}
