:root {
  --primary-color: #0d6efd;
  --dark-bg: #0a0c10;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
}

/* Header & Nav Fixes */
#header {
  height: 85px;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  max-height: 55px; /* Keeps logo professional and proportional */
  width: auto;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.navbar ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  padding: 10px 20px;
  text-decoration: none;
  color: #444;
  font-weight: 600;
  transition: 0.3s;
}

.navbar a:hover, .navbar a.active {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  width: 100%;
  height: 90vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-bg.jpg') center center;
  background-size: cover;
  color: #fff;
  margin-top: 85px;

