/*
Theme Name: BMA - 2026
Author: trivia info it
Author URI: http://trivia.co.in/
Description: Bootstrap based wp theme for Baroda Management Association - Baroda, Gujarat, India.
Version: 3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  --bma-royal-blue: #0b2559;
  --bma-navy: #05163a;
  --bma-accent: #2e68f5;
  --bma-gradient: linear-gradient(
    135deg,
    var(--bma-royal-blue) 0%,
    var(--bma-accent) 100%
  );
  --bma-text-main: #333333;
  --bma-text-light: #666666;
  --bma-bg-light: #f8f9fa;
  --bma-white: #ffffff;
}

/*Wordpress editor styles start*/

.entry-content img {
  margin: 0 0 1.5em 0;
}
.alignleft,
img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.alignright,
img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.aligncenter,
img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.alignnone,
img.alignnone {
  /* not sure about this one */
}
.wp-caption {
  margin-bottom: 1.5em;
  text-align: center;
  padding-top: 5px;
}
.wp-caption img {
  border: 0 none;
  padding: 0;
  margin: 0;
}
.wp-caption p.wp-caption-text {
  line-height: 1.5;
  font-size: 10px;
  margin: 0;
}
.wp-smiley {
  margin: 0 !important;
  max-height: 1em;
}
blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}
blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

/*Wordpress editor styles end*/

body {
  font-family: "Inter", sans-serif;
  color: var(--bma-text-main);
  background-color: var(--bma-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--bma-royal-blue);
}

/* Utilities */
.bg-navy {
  background-color: var(--bma-navy);
  color: var(--bma-white);
}
.bg-royal-blue {
  background-color: var(--bma-royal-blue);
  color: var(--bma-white);
}
.bg-light-gray {
  background-color: var(--bma-bg-light);
}
.text-accent {
  color: var(--bma-accent);
}

.btn-primary {
  background: var(--bma-gradient);
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 8px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(46, 104, 245, 0.3);
  background: var(--bma-gradient);
}

.btn-outline-primary {
  border: 2px solid var(--bma-accent);
  color: var(--bma-accent);
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--bma-accent);
  color: var(--bma-white);
  transform: translateY(-2px);
}

/* Section Spacing */
section {
  padding: 80px 0;
}

/* 1. TOP BAR */
.top-bar {
  font-size: 0.85rem;
  background-color: var(--bma-navy);
  color: #ccc;
  padding: 6px 0;
}
.top-bar a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.top-bar a:hover {
  color: var(--bma-white);
}

/* 2. HEADER */
.main-header {
  background: var(--bma-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 10px 0;
}
.navbar-brand img {
  width: 75%;
}
.navbar-nav .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--bma-navy) !important;
  margin: 0;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--bma-accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* 3. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--bma-navy);
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://images.unsplash.com/photo-1540575467063-178a50c2df87?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(5, 22, 58, 0.9) 0%,
    rgba(5, 22, 58, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bma-white);
}
.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bma-white);
  margin-bottom: 20px;
}
.hero-content p.lead {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 40px;
}
.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 40px;
}

/* 4. QUICK HIGHLIGHTS */
.highlights-strip {
  margin-top: -90px;
  position: relative;
  z-index: 10;
}
.highlight-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 4px solid var(--bma-accent);
  transition: transform 0.3s ease;
  height: 100%;
}
.highlight-card:hover {
  transform: translateY(-10px);
}
.highlight-icon {
  font-size: 2rem;
  color: var(--bma-accent);
  margin-bottom: 15px;
}

/* 5. ABOUT SECTION */
.about-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 6. FEATURED EVENTS */
.event-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  background: var(--bma-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.event-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card:hover .event-img-wrap img {
  transform: scale(1.05);
}
.event-date-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--bma-gradient);
  color: var(--bma-white);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.event-date-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
}

/* 7. SPEAKERS */
.speaker-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  background: var(--bma-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.speaker-card:hover {
  transform: translateY(-10px);
}
.speaker-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid var(--bma-bg-light);
}

/* 8. MEMBERSHIP BENEFITS */
.benefit-card {
  padding: 30px;
  border-radius: 16px;
  background: var(--bma-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.benefit-card:hover {
  background: var(--bma-royal-blue);
  color: var(--bma-white);
}
.benefit-card:hover h4,
.benefit-card:hover p {
  color: var(--bma-accent);
}
.benefit-icon svg {
  fill: var(--bma-accent);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon svg {
  fill: var(--bma-royal-blue);
}

/* 9. PRESIDENT'S MESSAGE */
.president-img {
  border-radius: 16px;
  box-shadow: 20px 20px 0px var(--bma-bg-light);
}

/* 10. STATISTICS */
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  background: var(--bma-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.stat-item h5 {
  color: var(--bma-text-light);
}
/* 11. NEWS & INSIGHTS */
.blog-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  background: var(--bma-white);
  transition: transform 0.3s ease;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* 12. TESTIMONIALS */
.testimonial-card {
  background: var(--bma-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 13. PARTNERS */
.partner-logo {
  max-width: 150px;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}
.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* 14. GALLERY */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 24px;
}
.gallery-item img {
  width: 100%;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 37, 89, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* 16. FOOTER */
.site-footer {
  background-color: var(--bma-navy);
  color: #ccc;
  padding-top: 80px;
}
.site-footer h5 {
  color: var(--bma-white);
  margin-bottom: 20px;
}
.site-footer li {
  padding-top: 0.3rem;
}
.site-footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: var(--bma-accent);
}
.footer-bottom {
  background-color: #030d22;
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
}
