/* =======================
   GENERAL
======================= */

:root {
    --primary: #d62828;
    --secondary: #1b7f3c;
    --dark: #121212;
    --light: #fff;
    --bg: #faf7f4;
    --text: #555;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

a {
    text-decoration: none;
}

section {
    padding: 90px 0;
}

/* =======================
   HEADER
======================= */
.header {

    position: sticky;

    top: 0;

    z-index: 1050;

    background: white;

    box-shadow: 0 2px 20px rgba(0,0,0,.05);

}

.navbar {

    padding: 18px 0;

}

.navbar-brand img {

    height: 55px;

}

.navbar-toggler {

    font-size: 28px;

    color: #333;

}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark);
    padding: 10px 18px !important;
    border-radius: 10px;
    transition: all .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: rgba(214, 40, 40, 0.08);
}

.navbar-nav .nav-link.active::after {
    display: none;
}

.offcanvas {

    max-width: 300px;

}

.offcanvas-body .nav-link {

    font-size: 18px;

    font-weight: 600;

    padding: 12px 0;

}

.offcanvas-body .nav-link.active {

    color: #dc3545;

}

.navbar-toggler {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 50px;

    height: 50px;

    border-radius: 12px;

    border: 2px solid #e5e7eb !important;

    color: #ffffff !important;

    background: #000;

}



.navbar-toggler i {

    font-size: 24px;

}

/* =======================
   BUTTONS
======================= */

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    color:#fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    background:#fff;
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

/* =======================
   HERO SECTION
======================= */

.hero {
    position: relative;

    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('../images/hero.webp');             
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}



.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-content .red {
    color: var(--primary);
}

.hero-content .green {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.25rem;
    margin: 20px 0;
    max-width: 550px;
    color:#000;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* =======================
   SECTION TITLE
======================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.section-title h2 span {
    color: var(--primary);
}

/* =======================
   EVENTS
======================= */

.events {
    background: var(--bg);
}

.event-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.4s;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-12px);
}

.event-image {
    position: relative;
}

.event-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.event-date {
    position: absolute;
    bottom: -20px;
    left: 25px;
    background: #fff;
    border-radius: 15px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: var(--shadow);
}

.event-date strong {
    display: block;
    font-size: 28px;
    color: var(--primary);
}

.event-content {
    padding: 40px 25px 25px;
}

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.event-content p {
    margin-bottom: 10px;
}

.event-content i {
    color: var(--primary);
    margin-right: 8px;
}

/* =======================
   GALLERY
======================= */

.gallery-section {
    background: #fafafa;
}

.gallery-grid {
    column-count: 4;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: .5s ease;
    border-radius: 25px;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item::before {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.45);
    color: white;
    font-size: 32px;
    opacity: 0;
    transition: .3s;
    z-index: 2;
    pointer-events: none; 
}

.gallery-item:hover::before {
    opacity: 1;
}


/* =======================
   LOGIN SECTION
======================= */

.login-section {
    background: linear-gradient(
        135deg,
        #fff8f6,
        #fff
    );
}

.login-box {
    background: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.login-info {
    text-align: center;
}

.login-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(214, 40, 40, 0.1);
    color: var(--primary);
    font-size: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 30px;
}

.login-form input {
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    padding: 0 20px;
}

.login-form input:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.login-form button {
    width: 100%;
}

/* =======================
   FOOTER
======================= */
.premium-footer {
    background: #111827;
    color: rgba(255,255,255,.75);
    padding-top: 90px;
}

.footer-brand img {
    max-width: 300px;
    height:auto;
}

.premium-footer h5 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,.75);
    transition: .3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;

    transition: .3s;
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 70px;
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 25px 0;
}

.footer-bottom a {
    color: var(--primary);
}

/* =======================
   RESPONSIVE
======================= */


@media (max-width: 991.98px) {

    .navbar-brand img {

    max-width: 250px;
    height:auto;

}

.navbar-toggler {
        display: flex !important;
    }

    

    .hero {
        text-align: center;
        padding-top: 60px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .login-box {
        padding: 40px;
    }
}

@media (min-width: 992px) {

    .navbar-toggler {
        display: none !important;
    }

    

}

@media (max-width: 768px) {

    section {
        padding: 70px 0;
    }

    .hero {

        min-height: 350px;

        padding: 80px 0 20px;

        align-items: flex-start;

        background-position: 68% center;
    }

    .hero::before {

        background: linear-gradient(
            to bottom,
            rgba(255,255,255,0.80),
            rgba(255,255,255,0.40)
        );
    }

    .hero-content {
        display: none;
    }

    .hero-content h1 {

        font-size: 2.5rem;

        line-height: 1.2;

        margin-bottom: 20px;
    }

    .hero-content p {

        font-size: 1rem;

        max-width: 100%;

        margin-bottom: 30px;
    }

    .hero .btn-primary-custom,
    .hero .btn-outline-custom {

        width: 100%;

        margin-bottom: 15px;
    }

    .login-box {
        padding: 30px;
    }

    .event-image img {
        height: 220px;
    }
}

@media (max-width: 576px) {

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }

    .login-box {
        padding: 25px;
    }

    .event-content {
        padding: 35px 20px 20px;
    }
}


.inner-hero-section {
    background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.85)), url('../images/hero.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: var(--light);
}

.inner-hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 10px;
}

/* Red & White Theme Breadcrumbs */
.inner-hero-section .breadcrumb {
    margin-bottom: 0;
}

.inner-hero-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
}

.inner-hero-section .breadcrumb-item a:hover {
    color: var(--primary);
}

.inner-hero-section .breadcrumb-item.active {
    color: var(--light);
}

.inner-hero-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

.join-info-card,
.membership-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
}

.join-info-card {
    background: linear-gradient(
        135deg,
        #d71920,
        #b30f15
    );

    color: #fff;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: center;
}

.info-item i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.info-item span {
    display: block;
    opacity: .85;
}

.info-item strong {
    font-size: 18px;
}

.join-benefits {
    list-style: none;
    padding: 0;
}

.join-benefits li {
    margin-bottom: 15px;
}

.join-benefits i {
    margin-right: 10px;
}

.membership-header1 {
    margin-bottom: 30px;
}

.membership-header1 h3 {
    font-weight: 700;
}

.membership-card .form-control,
.membership-card .form-select {
    height: 55px;
    border-radius: 12px;
}

.membership-card textarea {
    border-radius: 12px;
}

.membership-card .btn-primary-custom {
    border-radius: 12px;
    min-width: 220px;
    padding: 14px 25px;
}



.floating-icons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
    text-decoration: none;
    border: none;
}

.fab:hover {
    transform: scale(1.1);
}

/* Colors */
.fab-call {
    background: #007bff;
}

.fab-whatsapp {
    background: #25D366;
}

.fab-enquiry {
    background: #ff6b00;
}


.membership-header {
    background: linear-gradient(135deg, #e53935, #d32f2f);
    color: #fff;
    padding: 16px 28px;
}

.membership-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

.membership-sidebar {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
}

.membership-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-item i {
    width: 50px;
    height: 50px;
    background: #e53935;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-xl {
    max-width: 1200px;
}
