@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --primary-black: #0A0A1F;
  --nebula: #1A0F2E;
  --neon-cyan: #00F0FF;
  --neon-magenta: #FF00AA;
  --celestial-gold: #E8C050;  
  --text-grey: #E0E0FF;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, var(--primary-black) 0%, var(--nebula) 100%),
              url('https://picsum.photos/id/1015/1920/800') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
  animation: nebula-pulse 25s infinite ease-in-out;
}

@keyframes nebula-pulse {
  0%, 100% { 
    opacity: 0.6; 
    transform: scale(1); 
  }
  50% { 
    opacity: 1; 
    transform: scale(1.05); 
  }
}

/* Logo Glow Effect */
.logo-glow {
  text-shadow: 
    0 0 20px var(--neon-cyan),
    0 0 40px var(--neon-magenta),
    0 0 60px var(--celestial-gold);
}

/* Navigation Links */
.nav-link {
  transition: all 0.3s ease;
  color: #E0E0FF;
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px var(--neon-cyan);
}

/* CTA Button */
.cta-button {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
  transition: all 0.4s ease;
  color: #000;
  font-weight: 600;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 30px var(--neon-cyan);
}

/* Optional: Tailwind script configuration */
@layer base {
  body {
    font-family: 'Inter', system_ui, sans-serif;
  }
  
  h1, .logo-glow {
    font-family: 'Inter', system_ui, sans-serif;
    position: relative;
    }
}

/* Page Layout */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Page Header/Banner - Smaller than hero banner */
.page-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--nebula) 100%),
                url('https://picsum.photos/id/1015/1920/400') center/cover no-repeat;
    height: 30vh; /* Smaller than full screen */
    min-height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    animation: nebula-pulse 25s infinite ease-in-out;
}

/* Main Content Area */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Content Cards/Sections */
.content-section {
    background: rgba(26, 15, 46, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 192, 80, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--celestial-gold);
    font-family: 'Playfair Display', serif;
    border-bottom: 2px solid rgba(232, 192, 80, 0.3);
    padding-bottom: 0.5rem;
}

.content-section h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--neon-cyan);
}

.content-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-grey);
}

/* Form Styling (for contact page) */
.contact-form {
    display: grid;
    gap: 1.5rem;
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--celestial-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(10, 10, 31, 0.8);
    border: 1px solid #222244;
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-grey);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    color: #000;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: fit-content;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px var(--neon-cyan);
}

/* Footer */
.site-footer {
    background: rgba(10, 10, 31, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #222244;
    padding: 2rem;
    margin-top: auto;
    text-align: center;
    color: #B0B0CC;
}




/* Dropdown Sub-Menu - Click to Open + Exclusive */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 31, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid #222244;
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.15);
}

/* Show submenu */
input[type="checkbox"]:checked ~ .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu link styling */
.sub-menu li a {
  display: block;
  padding: 10px 24px;
  color: #B0B0CC;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.sub-menu li a:hover {
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  padding-left: 30px;
}

/* Arrow rotation */
.nav-link span {
  display: inline-block;
  transition: transform 0.3s ease;
}

input[type="checkbox"]:checked ~ .nav-link span {
  transform: rotate(180deg);
}

/* Make image responsive */

/* container to control scaling */
.image-container {
    width: 50%;      /* Change to desired container width */
    height: auto;    /* Maintains aspect ratio */
    border: 2px solid --primary-black;
    padding: 10px;
    box-sizing: border-box;
    display: block;  /* Removes extra space below image */
}

