/* ===== VARIABLES ===== */
:root {
  --primary-color: #f59e0b;
  --dark-bg: #111;
  --section-bg: #2b2b2b;
  --text-light: #ffffff;
  --text-dark: #3b3b3b;
}

/* ===== GLOBAL ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  margin: 0;
}

/* ===== HEADINGS ===== */
h1,
h2,
h3,
h4 {
  color: var(--primary-color);
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 10;
}

.navbar a {
  color: orange !important;
  font-weight: 500;
  letter-spacing: 1px;
}

.navbar a:hover {
  color: orange !important;
  font-weight: 500;
  letter-spacing: 1px;
  font-weight: bold;

}

/* ===== SECTIONS ===== */
.dark-section {
  background: var(--section-bg);
  padding: 60px 0;
}

.social-section {
  background: #1a1a1a;
  padding: 60px 0;
}

/* ===== BUTTONS ===== */
.btn-orange {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  transition: 0.3s;
}

.btn-orange:hover {
  background: #d97706;

}

/* ===== ACTION BOXES ===== */
.action-box {
  text-align: center;
  padding: 20px;
  transition: 0.3s;
  cursor: pointer;
}

.action-box:hover {
  transform: translateY(-5px);
}

/* ===== SOCIAL BOX ===== */
.social-box {
  padding: 20px;
  transition: 0.3s;
}

.social-box:hover {
  transform: translateY(-5px);
}

/* ===== PROFILE IMAGES ===== */
.profile-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* ===== EVENT CARDS ===== */


/* EVENTS */
.event-card img {
  width: 100%;
  border-radius: 6px;
  transition: transform 0.3s;
}

.event-card:hover img {
  transform: scale(1.05);
}

.action-box,
.social-box {
  transition: all 0.3s;
}

.action-box:hover,
.social-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

:root {
  --brand-orange: #f59e0b;
}

.btn-orange {
  background: var(--brand-orange);
}

.navbar a {
  color: var(--brand-orange) !important;
}


/* ===== Carousel===== */

 /* SOCIAL SECTION */
        .social-section {
            background: linear-gradient(180deg, #000, #111);
            padding: 80px 0;
        }

        .social-box {
            background: #eee;
            padding: 40px;
            text-align: center;
            border-radius: 6px;
        }

        .social-box i {
            font-size: 40px;
            margin-bottom: 15px;
            color: #4c6ef5;
        }

        .social-box {
            transition: 0.3s;
        }

        .social-box:hover {
            transform: translateY(-5px);
            cursor: pointer;
        }

        /* ACTION BOXES */
        .action-section {
            background: linear-gradient(180deg, #222, #111);
            padding: 60px 0;
        }

        .action-box {
            background: #eee;
            padding: 40px;
            text-align: center;
            border-radius: 6px;
        }

        .action-box i {
            font-size: 40px;
            color: #4c6ef5;
            margin-bottom: 10px;
        }