/* Optimized CSS */
:root {
    --primary: #9ac03c;
    --secondary: #302429;
    --accent: #c5db3b;
}

ul li{
    text-decoration: none;
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.separator{
    background-image: url('../images/big-sep.png');
    height: 8px;
    width: 100%;
}
.pagination-container a:hover{
    color: var(--primary);
}

/* Base Styles */
body {
    font-family: "Luckiest Guy", cursive;
    color: #fff;
}

#hero{
    background: no-repeat center/cover;
    min-height: 500px;
}

.hero-container{
    min-height: 500px;
}

nav {
    display: flex;
    justify-content: space-around;
    z-index: 1080;
    background: url('../images/header-bg.png');
}


.hero-tagline{
    left:10%;
    bottom: 35%;
    background-color: #30242931;
}
.cta-btn{
    left:10%;
    bottom: 20%;
    color: aliceblue;
}


.dot {
    height: 12px;
    width: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #000;
}


.navbar-nav{
    background-color: #302429;

}



.cta-btn , button , .btn {
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    transition: transform 0.2s;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

section , .modal-content{
    background-color: var(--secondary);
}

.card{
    background-color: #00000052 !important;
    align-items: center !important;
}

#team .card-img-top{
    max-width: 60% !important;
}

.card-body{
    font-family: Luckiest Guy, cursive;
    color:#fff;
}

.contact-card , .newsletter-card{
    background-color: rgba(0,0,0,0.2);
    border-radius: 8px;
}

.footer{
    background-color: rgb(38,29,33);
}

.social-links a{
    color:#c5db3b
}

/* Responsive Handling */
@media (max-width: 992px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
    }
}

@media (max-width:1200px) {
    .hero-text-container{
    margin-top: 60%;
    }
    .about-card {
        padding: 1.5rem !important;
    }
}

@media (min-width: 1200px) {
    .navbar-brand {
        padding-left: 8rem;
    }
    .hero-text-container{
    margin-top: 30%;
    }
}


.section-title {
    font-family: Luckiest Guy, cursive;
    color: var(--primary);
    font-size: clamp(2rem, 5vw, 3rem);
}
.article-title{
    font-family: Luckiest Guy, cursive;
    color: var(--primary);

}
