
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');


:root {
    --gs-red: #A90432;      
    --gs-yellow: #FDB913;   
    --dark-bg: #0b0b0b;     
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: #ffffff;
    line-height: 1.6; 
}


.navbar {
    background-color: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 3px solid var(--gs-red);
}

.nav-link.active {
    color: var(--gs-yellow) !important;
    font-weight: 700;
}


#heroSlider .carousel-item {
    height: 600px;
}

@media (max-width: 768px) {
    #heroSlider .carousel-item { height: 400px; }
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); 
}

.carousel-caption {
    text-align: left;
    left: 10%;
    bottom: 20%;
    z-index: 10;
}


.title-block span {
    background-color: var(--gs-red);
    color: #ffffff;
    padding: 8px 18px;
    font-size: clamp(1.4rem, 5vw, 3rem); 
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.4;
    display: inline-block;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}


.text-block span {
    background-color: var(--gs-yellow);
    color: #000000;
    padding: 5px 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}


.card {
    transition: transform 0.3s ease;
    border-radius: 12px;
}

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

.card-title {
    color: var(--gs-yellow);
    text-transform: uppercase;
}


footer {
    border-top: 1px solid var(--gs-red);
    background-color: #000;
}

.social-icons a {
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--gs-yellow) !important;
}
