@font-face {
    font-family: 'SFPro';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

.scroll-100 {
    height: 100vh;
    width: 100%;
    padding-top: 10px;
    overflow-y: auto;
    overflow-x: auto;
}

.sunny-gradient { background: linear-gradient(to bottom, #4FC3F7, #FF9D4D); }
.night-gradient { background: linear-gradient(to bottom, #2C3E50, #4A5F7A); }
.sunshine-gradient { background: linear-gradient(to bottom, #667EEA, #764BA2); }
.cloud-gradient { background: linear-gradient(to bottom, #6B7B8C, #9BA8B8); }
.fog-gradient { background: linear-gradient(to bottom, #7F8C8D, #BDC3C7); }
.storm-gradient { background: linear-gradient(to bottom, #34495E, #5D6D7E); }
.hail-gradient { background: linear-gradient(to bottom, #4A6572, #7F9BA8); }
.snow-gradient { background: linear-gradient(to bottom, #A1C4FD, #C2E9FB); }
.rain-gradient { background: linear-gradient(to bottom, #5D7A91, #8EA6BB); }

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sunny-rounded-corners {
    border-radius: 15px;
}

.sunny-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}
.sunny-title1 {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}
.sunny-title2 {
    font-size: large;
    font-weight: bold;
    color: #fff;
}
.sunny-title3 {
    font-size: larger;
    font-weight: bolder;
    color: #fff;
}
.sunny-subtitle {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}
.sunny-xxl-text {
    font-size: 80px;
    color: #fff;
}
.sunny-medium-text {
    font-size: 36px;
    color: #fff;
}
.sunny-small-text-italic {
    font-size: 24px;
    color: #fff;
    font-style: italic;
}

.glass-effect {
    /* Basistransparenz */
    background: rgba(255, 255, 255, 0.15);
    
    /* Verschiedene Hintergrund-Optionen */
    background: linear-gradient(
        142deg,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 35%,
        rgba(255, 255, 255, 0.2) 100%
    );
    
    /* Weichzeichner - Haupteffekt für Glas */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    
    /* Rahmen und Schatten */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Optional: Dunklere Version für bessere Lesbarkeit */
    /* background: rgba(0, 0, 0, 0.1); */
}

/* Für bessere Lesbarkeit des Textes */
.glass-effect .card-title,
.glass-effect .card-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Bis Tablet */
@media (max-width: 799px) {
    .sunny-title1 {
        font-size: 20px;
        margin-top: 15px;
        padding-top: 15px;
    }
}