/**
 * Glassmorphism Styles
 * Stile moderno per le pagine con card semi-trasparenti
 * 
 * @package GalloConGliStivali
 * @version 1.0.0
 */

/* Hero Section with Glass Card */
.glass-hero {
    position: relative;
    width: 100%;
    min-height: auto;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px 60px;
}

.glass-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.glass-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hero Title */
.glass-hero-title {
    text-align: center;
    margin-bottom: 40px;
}

.glass-hero-title h1,
.glass-hero-title h2 {
    font-family: var(--font-headings);
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
}

@media screen and (max-width: 768px) {

    .glass-hero-title h1,
    .glass-hero-title h2 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.glass-card h3 {
    color: #333;
    font-family: var(--font-headings);
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.glass-card-content {
    color: #444;
    font-size: 1rem;
    line-height: 1.6;
}

/* Cards Wrapper */
.glass-cards-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Navigation Button to Next Section */
.glass-nav-button {
    text-align: center;
    margin-top: 30px;
}

.glass-nav-button a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.glass-nav-button a:hover {
    background: #fff;
    color: var(--color-primary);
}