
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz@14..32&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

#hero {
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.8)), 
                url('assets/img/gym.jpg') center/cover no-repeat;
    background-attachment: fixed; 
}

.card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.card .card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card .content {
    flex-grow: 1;
}

.card .fa-check.has-text-success {
    margin-right: 0.5rem;
}
.card .fa-times.has-text-danger {
    margin-right: 0.5rem;
}

.button.is-large {
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer a:hover {
    color: white !important;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .title.is-1 {
        font-size: 2.5rem;
    }
    .section {
        padding: 3rem 1.5rem;
    }
    #hero .buttons .button {
        width: 100%;
        margin: 0.25rem 0;
    }
    .column.is-one-quarter {
        margin-bottom: 2rem;
    }
}

:focus-visible {
    outline: 3px solid hsl(141, 71%, 48%);
    outline-offset: 2px;
}

.footer .has-text-grey-light {
    color: #b0b0b0 !important; 
}

.footer .buttons .button {
    width: 48px;           
    height: 48px;          
    font-size: 1.5rem;     
    border-radius: 12px;   
}

.footer .buttons .button i {
    font-size: 1.5rem;     
}


#pricing .title.is-2 {
    color: #4a4a4a;  
    font-weight: 700; 
    letter-spacing: -0.02em; 
}


#pricing .subtitle.is-4 {
    color: #333333;  
    font-weight: 500; 
}

#spa .subtitle.is-5 {
    margin-top: 1rem;      
    margin-bottom: 2rem;   
}

#trial-form .subtitle.is-6 {
    margin-top: 1rem;       
    margin-bottom: 2rem;     
}