/* -------------------------------------------------------------
   BEESNASS STYLE SHEET
   Clean, dark theme with gold accent, responsive layout
-------------------------------------------------------------- */

/* === Base Page Setup === */
html, body {
    height: 100%;
	margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0c10; /* Deep black-blue for contrast */
    color: #f0c040; /* Gold-like color for readability and brand */
}

/* New wrapper to hold page structure */
body {
    display: flex;
    flex-direction: column;
}

/* === Header & Navigation Bar === */
header {
    display: flex;
    align-items: center;
    background-color: #1f1f1f; /* Dark gray header */
    gap: 20px; /* Spacing between logo and nav */
    /* Removed justify-content: space-between for left-aligned layout */
}

/* === Logo and Brand Title === */
.nav-logo {
    display: flex;
    align-items: center;
}

.logo {
    width: 50px;
    height: 50px;
    margin-right: 20px; /* Spacing between logo and BEESNASS text */
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #f0c040; /* Brand name in signature gold */
}

/* === Navigation Menu === */
nav ul {
    list-style-type: none; /* No bullets */
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Space between top-level menu items */
}

nav ul li {
    position: relative; /* Needed for dropdowns */
}

/* Base style for navigation links */
nav a {
    color: #f0c040;
    text-decoration: none;
    font-size: 16px;
}

/* Hover effect for nav links */
nav a:hover {
    color: #ffffff;
}

/* === Dropdown Menus === */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #2c2c2c; /* Slightly lighter than header */
    min-width: 160px;
    top: 100%; /* Align below parent */
    left: 0;
    z-index: 10; /* On top of page elements */
}

/* Reveal dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Remove list style for dropdown items */
.dropdown-content li {
    list-style: none;
}

/* Style individual dropdown links */
.dropdown-content li a {
    display: block;
    padding: 10px;
    color: #f0c040;
}

/* Hover state for dropdown links */
.dropdown-content li a:hover {
    color: #ffffff;
    background-color: #3a3a3a;
}

/* === Main Page Content === */
main {
    flex: 1; /* Make main area grow to fill space */
	padding: 40px; /* Breathing room around main content */
}

/* Hero section title on home page */
.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

/* Section headings for About, Contact, etc. */
.content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}


/* === Force Link Color Consistency === */
nav a:link,
nav a:visited,
nav a:active {
    color: #f0c040 !important; /* Override browser defaults */
}

/* animating the teaser message for now */
.teaser-message p {
  opacity: 0;
  animation: fadeIn 2s ease-in forwards;
  font-family: 'Tomorrow', sans-serif;
  color: #ff0000; /* 🔴 a striking crimson red (CrowdStrike-ish) #e63946,#b30000 */
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

.teaser-message p:nth-child(1) {
  animation-delay: 0s;
}
.teaser-message p:nth-child(2) {
  animation-delay: 2s;
}
.teaser-message p:nth-child(3) {
  animation-delay: 4s;
}
.teaser-message p:nth-child(4) {
  animation-delay: 6s;
}


@keyframes fadeIn {
  to {
    opacity: 1;
  }
}



/* === Footer === */
footer {
    background-color: #1f1f1f; /* Same as header for visual symmetry */
    padding: 20px;
    font-size: 14px;
    text-align: center; /* ✅ Center the footer text */
    color: #ccc; /* Light gray for reduced focus */
}

/* Footer links (e.g., Privacy, Terms) */
footer a {
    color: #f0c040; /* Match nav links */
    text-decoration: none;
    margin: 0 10px; /* Space between links */
}
