@charset "utf-8";
/* ===========================
   Branson Logo Design Studio
   Friendly & Inviting Palette
   =========================== */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body & Background */
body {
  background-color: #F3E8FF; /* Soft lavender mist */
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #2E2E3A; /* Deep slate */
  line-height: 1.6;
}

/* ===========================
   SITE BANNER (NEW)
   =========================== */

.site-banner {
  width: 100%;
  max-height: 300px;        /* Keeps banner elegant and not overwhelming */
  overflow: hidden;         /* Prevents stretching or overflow */
  margin-bottom: 10px;      /* Breathing room before navbar */
}

.site-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;        /* Ensures clean scaling on all screens */
  border-bottom: 4px solid #FFD166; /* Honey gold accent */
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); /* Soft separation shadow */
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.9);
}

.navbar-brand {
  font-weight: bold;
  color: #FF6F61 !important; /* Coral sunrise */
}

.nav-link {
  color: #2E2E3A !important;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 5px;
}

/* Hover + Active states unified */
.nav-link:hover,
.nav-link.active {
  background-color: #FFD166; /* Honey gold */
  color: #2E2E3A !important;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  margin: 40px auto;
}

.hero h1 {
  font-size: 3rem;
  color: #FF6F61; /* Coral sunrise */
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
  color: #4DD0E1; /* Aqua breeze */
}

.hero .btn {
  background-color: #FF6F61; /* Coral sunrise */
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 12px 25px;
  transition: all 0.3s ease;
}

.hero .btn:hover {
  background-color: #FFD166; /* Honey gold */
  color: #2E2E3A;
}

/* Sections */
section {
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  border-radius: 8px;
}

.section-divider {
  border-top: 3px solid #FFD166;
  margin: 40px 0;
}

/* Cards */
.card {
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
}

.card-title {
  color: #FF6F61; /* Coral sunrise */
  font-weight: bold;
}

.card-text {
  color: #2E2E3A;
}

.card .btn {
  background-color: #4DD0E1; /* Aqua breeze */
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.card .btn:hover {
  background-color: #FFD166; /* Honey gold */
  color: #2E2E3A;
}

/* Forms */
form label {
  font-weight: bold;
  color: #2E2E3A;
}

form .form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
}

form .btn {
  background-color: #FF6F61; /* Coral sunrise */
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}

form .btn:hover {
  background-color: #FFD166; /* Honey gold */
  color: #2E2E3A;
}

/* Footer */
footer {
  background-color: #4DD0E1; /* Aqua breeze */
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer a {
  color: #FFD166;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: #FF6F61; /* Coral sunrise */
}