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

body {
    font-family: 'League Spartan', Arial, Helvetica, sans-serif;
}


/* PC header */
.pc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.pc-header-holder{
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    border-radius: 16px;
    margin-top: 10px;
    padding: 15px;
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}

.header-logo a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img{
    width: 120px;
    margin: 10px 0;
}

.header-main-links{
    display: flex;
    gap: 30px;
}

.header-main-links a{
    text-decoration: none;
    color: white;
    font-size: 18px !important;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-main-links a:hover{
    color: #F28C28;
    transform: translateY(-3px);
}

.header-cta a.secondary-btn-cta{
    font-size: 16px !important;
}

/* Addon-holder */
.add-on-holder{
    background: rgba(24, 24, 24, 0.73); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
    width: 70%;
    display: none;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
    padding: 15px;
    border-radius: 16px;
    z-index: 999;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
}

.add-on-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.add-on-card{
    background-color: rgb(34, 34, 34);
    text-align: center;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.add-on-card:hover{
    box-shadow: 0 0px 10px #f28d284f;
    color: #F28C28;
}

.card-icon-header{
    background-color: rgb(105, 105, 105);
    padding: 10px;
    border-radius: 50%;
}

.card-icon-header img{
    width: 30px;
}

.card-text{
    text-align: left;
}

.card-text h2{
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.card-text p{
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #CCCCCC;
}

/* Mobile header */
.mobile-header{
    display: none;
}


/* Mobile optimization */
@media (max-width: 768px) {
    .pc-header {
        display: none;
    }

    .mobile-header {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;

        
  
    }

    .mobile-header-holder{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;   
        background: rgba(24, 24, 24, 0.73); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-header-logo a img{
        width: 100px;
        margin: 0;
    }

    .mobile-header-top{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
       padding: 10px 10px;
    }

    .mobile-header-burger{
        width: 40px;
        height: 25px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile-header-burger div{
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    /* Burger → X animacija */
    .mobile-header-burger.active .line1 {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-header-burger.active .line2 {
        opacity: 0;
    }

    .mobile-header-burger.active .line3 {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .mobile-header-link-holder{
        display: none;
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 20px 0;
        
        margin: 6px auto;
        background: rgba(24, 24, 24, 0.73); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        border-radius: 16px;
    }

    .mobile-header-links{
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 30px;
    }

    .mobile-header-links a{
        text-decoration: none;
        color: white;
        font-size: 20px;
        font-weight: 400;
        transition: all 0.3s ease;
        cursor: pointer;
        padding: 5px 20px;
    }

    .mobile-header-links a span{
        font-size: 12px;
        margin-left: 5px;
        transition: transform 0.3s ease;
        transform: rotate(0deg);
    }

    .mobile-header-links a span.rotated{
        transform: rotate(180deg) !important;
    }

    .add-ons-mobile{
        width: 90%;
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 0 auto;
    }

    .add-on-mobile-link{
        background-color: rgb(34, 34, 34);
        text-align: center;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-header-cta{
        margin-top: 20px;
    }

    .header-contact-holder{
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .header-contact-holder a{
        text-decoration: none;
        color: white;
        font-size: 13px;
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .header-contact-holder a img{
        width: 13px;
    }





}

