/*
Theme Name: Elkridge Rotary Custom Theme
Theme URI: https://example.com/my-custom-theme-uri/
Author: Shimaa Huesin
Author URI: https://example.com/
Description: A custom theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org
Tags: blog, one-column, custom-colors
Text Domain: my-custom-theme
*/
section {
    padding: 80px 0;
}
.branding-bar {
    background: #005DAA;
    color: #fff;
    padding: 15px 0;
}

.club-name {
    font-size: 0.9rem;
    line-height: 1.2;
}

.club-founded {
    font-size: 0.85rem;
    opacity: 0.9;
    font-style: italic;
    color: #fee134;
}

.navbar {
    padding: 18px 0;
}

.navbar-nav .nav-link {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
/* ===== TOP BAR ===== */
.top-bar {
     background: #005DAA;
    color: #fff;
    font-size: 0.85rem;
    padding: 18px 0;
}
    

.top-bar img {
    height: 70px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
}

.top-bar a:hover {
    text-decoration: underline;
}

/* ===== NAVBAR ===== */
.navbar {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.custom-logo {
    max-height: 75px;
}

.navbar-nav .nav-item {
    margin-left: 20px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #0056b3;
}
.top-bar {
    padding: 20px 0;
}

.navbar {
    padding: 15px 0;
}

.navbar-nav .nav-link {
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.hero {
    position: relative;
    height: 90vh;
    background: url('../bootstrap-theme/assets/images/hero.jpeg') center center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    color: #fff;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}


.hero-premium {
  position: relative;
  height: 85vh;
  min-height: 600px;
  background:url('../bootstrap-theme/assets/images/hero.jpeg')  center center / cover no-repeat;
}

.hero-premium .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 46, 93, 0.85),
    rgba(0, 46, 93, 0.75)
  );
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #FFC72C;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 20px 0;
  
}
.hero-title {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0.95;
}

.hero-buttons .btn {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s ease;
}

.hero-buttons .btn-warning {
  box-shadow: 0 8px 20px rgba(255, 199, 44, 0.4);
}

.hero-buttons .btn-warning:hover {
  transform: translateY(-3px);
}


.btn-rotary {
    background: #F7A81B;
    color: #fff;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-rotary:hover {
    background: #d89014;
}
.impact-section {
  background: #f8f9fa;
}

.section-title {
  font-weight: 700;
}

.impact-box h3 {
  font-size: 2.5rem;
  color: #005DAA;
  font-weight: 700;
}

.impact-box p {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #555;
}
.focus-card {
  background: #ffffff;
  padding: 30px;
  border: 1px solid #eee;
  transition: 0.3s ease;
}

.focus-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.focus-card h5 {
  font-weight: 600;
  margin-bottom: 15px;
}
.testimonial-section {
  background: #f8f9fa;
}

.testimonial-card {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}