/* index.css for corvellanova.com */
:root {
  
  --bg: #0b080c;
  --bg-alt: #130f16;
  --surface: #1c1622;
  --surface-soft: #282030;
  --border: rgba(245, 158, 11, 0.2);
  --border-hover: rgba(236, 72, 153, 0.45);
  --text: #f7eff3;
  --muted: #aa9 Ride;
  --muted: #aa9cae;
  --primary: #f59e0b;      /* Solar Gold */
  --primary-strong: #ffffff;
  --success: #ec4899;      /* Crimson */
  --radius: 8px;
  --radius-sm: 4px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.35);
  --shadow-mint: 0 0 20px rgba(236, 72, 153, 0.25);
  --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.95);
  --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
  --gradient-mint: linear-gradient(160deg, #ec4899 0%, #f59e0b 100%);
    
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background-color: var(--bg);
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  background-attachment: fixed;
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.12) 0%, transparent 65%),
    linear-gradient(var(--bg), var(--bg));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(245, 158, 11, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(245, 158, 11, 0.02) 1px, transparent 1px);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.muted {
  color: var(--muted);
}

/* Utilities */
.glass {
  background: rgba(19, 15, 22, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


/* Fixed Left Sidebar Navigation */
.sidebar-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 250px;
  background: rgba(19, 15, 22, 0.9);
  border-right: 1px solid var(--border);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  z-index: 100;
}
.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.sidebar-link {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.sidebar-link .icon {
  font-size: 1.1rem;
}
.sidebar-link:hover,
.sidebar-link.active {
  color: var(--primary);
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid var(--primary);
}
.sidebar-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: 20px;
}
.mobile-top-header {
  display: none;
}
body {
  padding-left: 250px;
}
@media (max-width: 900px) {
  body {
    padding-left: 0;
  }
  .sidebar-wrapper {
    display: none;
  }
  .mobile-top-header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(19, 15, 22, 0.95);
    z-index: 100;
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
  }
  .mobile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .hamburger-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    display: flex;
  }
  .hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
  }
  .hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-overlay-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(19, 15, 22, 0.98);
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .mobile-overlay-menu.open {
    display: flex;
  }
  .mobile-overlay-menu a {
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    padding: 12px 0;
    color: var(--text);
  }
}
    

/* Main Content */
.main-content {
  min-height: 80vh;
  padding-bottom: 120px;
}

/* Footer */
.footer-main {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 100px;
  font-size: 0.9rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand .footer-logo {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
}

.footer-brand .footer-disclaimer {
  color: var(--muted);
  margin-top: 10px;
}

.footer-links-grid {
  display: contents;
}

.footer-group h4 {
  font-family: "Syne", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-group a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-group a:hover {
  color: var(--primary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  gap: 20px;
}

.badge-18 {
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
}

.pgf-warning {
  flex: 1;
  font-size: 0.8rem;
  color: var(--muted);
}

.pgf-warning a {
  color: var(--primary);
  text-decoration: underline;
}

.copyright {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Age Verification Overlay */
#age-verification-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 5, 8, 0.97);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.age-dialog {
  width: min(500px, 100% - 40px);
  padding: 40px;
  text-align: center;
  border: 1px solid var(--border);
}

.age-dialog h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin: 0 0 10px;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 0.05em;
}

.age-dialog h3 {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.age-dialog p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.age-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Cookie Consent Overlay */
#cookie-consent-overlay {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 9999;
  display: none;
}

.cookie-banner {
  padding: 20px;
  max-width: 400px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}
