/* =================================== */
/* ROOT VARIABLES */
/* =================================== */
:root {
    --primary-blue: #3b82f6;
    --accent-pink: #ec4899;
    --neutral-bg: #f4f4f9;
    --text-color: #333;
    --footer-bg: #1f2937;
    --success-green: #10b981;
    --max-width: 1280px;
}

/* =================================== */
/* GLOBAL RESET & BASE STYLES */
/* =================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--neutral-bg);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#root {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    letter-spacing: 0.05em;
}

/* =================================== */
/* HEADER */
/* =================================== */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--primary-blue);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    color: #fff;
    /* Font size remains reduced */
    font-size: 1.5rem; 
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    
    /* Alignment for icon and text */
    display: flex; 
    align-items: center;
    gap: 0.5rem; 
}

.header-logo:hover {
    opacity: 0.9;
}

/* UPDATED STYLES FOR THE ICON */
.header-logo-icon {
    /* INCREASED ICON SIZE */
    height: 2.2rem; 
    width: 2.2rem;
    /* Red color remains */
    color: #e03131; 
    stroke: currentColor; 
}

/* ... rest of your header styles ... */
.nav-desktop {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    color: #fff;
    text-decoration: none;
    padding-bottom: 5px;
    font-weight: 600;
    transition: border-color 0.2s, opacity 0.2s;
}

.nav-desktop a:hover {
    opacity: 0.8;
}

.nav-desktop .active {
    border-bottom: 2px solid #fff;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background-color: var(--primary-blue);
    padding: 0 1.5rem 1rem;
    position: absolute;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.nav-mobile a {
    padding: 0.75rem 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-weight: 500;
    transition: background 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile.open {
  display: flex;
}

.nav-mobile a:last-child {
    border-bottom: none;
}

.nav-mobile a:hover,
.nav-mobile .active {
    background: rgba(255,255,255,0.1);
    padding-left: 0.5rem;
}

@media (min-width: 768px) {
    .nav-desktop { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* =============================== */
/* Footer Styles                   */
/* =============================== */

.site-footer {
  background-color: #333; /* Dark charcoal */
  color: #fff;
  padding: 3rem 1.5rem 1rem;
  text-align: left;
}

/* Main Footer Grid */
.footer-main-grid {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Column Titles */
.footer-title {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

/* About / Description Text */
.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  max-width: 350px;
  margin-bottom: 0;
}

/* Lists for Links / Contact Info */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #ccc;
}

.footer-list a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-list a:hover {
  color: #ec4899; /* Pink accent */
}

/* Social Links */
.footer-social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.25rem;
}

.footer-social-links a {
  color: #fff;
  transition: color 0.2s ease;
}

.footer-social-links a:hover {
  color: #ec4899;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.footer-copyright-text {
  font-size: 0.85rem;
  color: #999;
  text-align: center;
}

/* Responsive Footer: 3 Columns on Medium Screens */
@media (min-width: 768px) {
  .footer-main-grid {
    grid-template-columns: 2fr 1.25fr 1.5fr;
  }
}

