:root {
    --primary-font: 'Beaufort for LOL', serif;
    --secondary-font: 'Spiegel', sans-serif;
    --web-font: 'Outfit', Arial, sans-serif;

    --primary-color: #010A13;
    --secondary-color: #091428;

    --button-color: #00AEEF;

    --text-primary-color: #c8aa6e; 
    --text-secondary-color: #ffffff; 

    --background-color: #111; 
    --second-background-color: #ffffff;
    
    --border-color: #444; 
    --hover-border-color: #c8aa6e; 
    
    --logo-height-desktop: 2rem;
    --logo-height-mobile: 1.5rem;
    --web-font: 'Outfit', Arial, sans-serif;
}

*{
    margin:0;
    padding:0;
}

body {
     
    background: linear-gradient(180deg, #111111, #092a32, #010a13, #0a1428);
    background-size: 800% 800%;

    animation: AnimationName 60s ease infinite;
    }

    @keyframes AnimationName {
    0%{background-position:96% 0%}
    50%{background-position:5% 100%}
    100%{background-position:96% 0%}
}


.bg-dark {
    background-color: var(--background-color) !important; 
}

/* NAVBAR STYLES */
.logo {
    height: var(--logo-height-desktop);
    width: auto;
    max-width: 100%;
}

.navbar-nav .nav-link{
    color: var(--text-secondary-color);
    font-family: var(--web-font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.btn-primary {
    background-color: var(--button-color);
    font-family: var(--web-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15px;
    line-height: 24px;
    border-radius: 16px;
    border: none;

    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    transform: skewX(-20deg);
    
}

.btn-primary:hover::after {
    animation: hextech-swipe 0.7s; 
}

@keyframes hextech-swipe {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}
    
.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important; 
    
    color: var(--text-primary-color); 
    border: 1px solid var(--text-primary-color);
    
    border-radius: 8px; 

    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}


.navbar-toggler:hover {
    background-color: rgba(200, 170, 110, 0.1); 
    box-shadow: 0 0 10px var(--text-primary-color); 
    text-shadow: 0 0 5px var(--text-primary-color); 
    border-color: #f0e6d2; 
}


.navbar-toggler[aria-expanded="true"] {
    background-color: var(--text-primary-color); 
    color: #010A13; 
}

/* BANNER CONTENS START HERE */
.hero-background{
    background-image: url('Assets/img/Background.png');
    background-size: cover;
    background-position: center;
    min-height: 50vh; 
    position: relative;
}

.hero-span{
    font-family: var(--primary-font);
    font-size: clamp(0.7rem, 1vw, 1rem);
    font-weight: 400;
    color: var(--text-secondary-color);
    text-transform: uppercase;
    line-height: 2px;
    letter-spacing: 2px;
}

.hero-text{
    font-family: var(--primary-font);
    font-size: clamp(2rem, 4.5vw, 4rem);
    font-weight: 900;
    color: var(--text-secondary-color);
    font-style: italic;
    text-transform: uppercase;
}

.hero-desc{
    font-family: var(--secondary-font);
    font-size: clamp(0.7rem, 1vw, 0.875rem);
    font-weight: 400;
    color: var(--text-secondary-color);
    max-width: 350px;
    text-align: center;
}

.gold-line{
    margin-top: -15px;
    pointer-events: none;
}

.hero-frame-wrapper{
    position: relative;
    display: inline-block;
    min-width: 60%; 
    max-width: 90%;
    
}

.hero-frame-border {
    position: absolute;
    top: -2%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-frame-content {
    position: relative;
    z-index: 2;
    padding: 6rem 11vw;
}

@media (max-width: 768px) {
    .hero-frame-content {
        padding: 2rem 1.5rem;
    }
}


/* BANNER CONTENTS END HERE */

/* Tools Bar Styles */

.search-bar {
    display: flex;
    align-items: center;

    background-color: var(--primary-color);
    border: 1px solid var(--text-primary-color);
    border-radius: 40px;

    padding: 0.5rem 1.5rem;
    width: 300px;

    scroll-margin-top: 100px;
}

.search-bar input {
    border: none;
    background: transparent;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: var(--web-font);
    font-size: 0.8rem;
    width: 100%;
    outline: none; 
}

.search-bar button {
    background: transparent;
    border: none;
    cursor: pointer;
    height: 30px;
    padding-left: 15px;
    padding-bottom: 5px;
    border-left: 1px solid rgba(200, 170, 110, 0.5);
}

.search-bar button img {
    width: 24px;
    height: 24px;
}

.pagination{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.pagination-button {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-primary-color);
    background-color: transparent;
    color: var(--text-primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.pagination-button:hover {
    background-color: var(--text-primary-color);
    color: var(--primary-color);
    box-shadow: 0 0 15px rgba(200, 170, 110, 0.4);
}

.pagination-button[style*="opacity: 0.5"] {
    opacity: 0.5 !important;
    cursor: not-allowed;
}

.pagination-button[style*="opacity: 0.5"]:hover {
    background-color: transparent;
    color: var(--text-primary-color);
    box-shadow: none;
    cursor: not-allowed;
}

.pagination-info {
    color: var(--text-primary-color);
    font-family: var(--web-font);
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
}


/* Tools Bar Styles End */

/* Hover Cards */
#hoverCard {
    display: none;
    position: absolute;
    background-color: rgba(16, 20, 30, 0.95); 
    border: 1px solid #c8aa6e; 
    padding: 20px;
    width: 450px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    pointer-events: none; 
    color: #f0e6d2; 
}

.hover-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(200, 170, 110, 0.3);
    padding-bottom: 8px;
}

.hover-role-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.hover-champion-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f0e6d2;
    font-family: var(--primary-font);
    text-transform: uppercase;
}

.hover-role-text{
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-primary-color);
    font-family: var(--secondary-font);
    font-style: italic;
    text-transform: capitalize;
}

.hover-champion-title {
    margin: 10px 0 10px 0;
    font-size: 0.9rem;
    color: #c8aa6e; 
    text-transform: capitalize;
    font-family: var(--web-font);
}

.hover-champion-blurb {
    font-family: var(--web-font);
    font-size: 0.85rem;
    line-height: 1.4;
    color: #c3c3c3; 
    margin: 1;
    text-align: justify;
}


/* CLIENT CARDS - START HERE*/
.client-card {
    border: 1px solid #444; 
    background-color: #000;
    overflow: hidden; 
    position: relative;
    transition: all 0.3s ease;
    height: 100%; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    aspect-ratio: 308 / 560;
}

/* HOVER EFFECT */
.client-card:hover {
    border-color: #c8aa6e; 
    box-shadow: 0 0 15px rgba(200, 170, 110, 0.4); 
    transform: translateY(-5px);
}

/* THE IMAGE */
.client-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.5s ease;
}

.client-card:hover img {
    transform: scale(1.1); 
    opacity: 0.7; 
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; 
    background: linear-gradient(to top, rgba(9,20,40, 1), transparent);
    pointer-events: none; 
}

/* TEXT CONTAINER */
.card-text-content {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.champion-name {
    font-family: var(--primary-font);
    font-weight: 700;
    text-transform: uppercase;
    color: #f0e6d2;
    letter-spacing: 2px;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.champion-title {
    font-family: var(--secondary-font);
    font-style: italic;
    color: #c8aa6e; 
    font-size: 0.85rem;
    text-transform: capitalize;
    margin: 0;
}

.container-league {
    margin-right: auto;
    margin-left: auto;
    padding-right: 100px;
    padding-left: 100px;
}

/*ENDS HERE*/

/* Footer */
.footer{
    background-image: url(Assets/img/footer-background.png);
    background-size: cover;
    background-position: center;
    min-height: 40vh; 
    position: relative;
}

.text-main{
    font-family: var(--web-font);
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.avera{
    color:#ac7200;
    font-weight: 700;
}

.text-details{
    font-family: var(--web-font);
    font-size: 0.875rem;
    font-weight: lighter;
    color: #c3c3c3;
    
}

/* MODAL STYLES */
.modal-content {
    background-color: rgba(16, 20, 30, 0.95) !important;
    border: 1px solid #c8aa6e !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}

.modal-header {
    border-bottom: 1px solid rgba(200, 170, 110, 0.3) !important;
}

.modal-body {
    color: #f0e6d2;
    padding: 1rem;
}

.champion-modal-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    margin-bottom: 5px;
    width: 100%;
}

.champion-modal-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    object-fit: contain;
}

.champion-modal-name {
    color: #f0e6d2;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    font-family: var(--primary-font);
    text-transform: uppercase;
}

.champion-modal-role {
    color: #c8aa6e;
    font-size: 0.85rem;
    font-family: var(--secondary-font);
    font-style: italic;
    text-transform: capitalize;
}


.champion-modal-lore-header {
    color: #c8aa6e;
    margin-bottom: 10px;
    font-family: var(--web-font);
    font-size: 0.9rem;
    text-transform: capitalize;
}

.champion-modal-lore {
    color: #c3c3c3;
    line-height: 1.4;
    font-family: var(--web-font);
    font-size: 0.85rem;
    text-align: justify;
}

@media (min-width: 992px) {
    .custom-nav-gap {
        margin-left: 20px; 
    }
}