/* full-viewport blue gradient background */
html, body {
    height: 100%;
    margin: 0;
}
body {
    background: linear-gradient(to bottom, #87CEEB 0%, #E0F6FF 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    min-height: 100vh;
}

.clouds {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: -1;
    pointer-events: none;
}

.rainbow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    z-index: 1;
}

.cloud {
    position: absolute;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    filter: blur(3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.c1 {
    top: 15%;
    width: 100px;
    height: 70px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1), 25px 8px 0 15px rgba(255,255,255,0.8), -25px 12px 0 20px rgba(255,255,255,0.8), 0 25px 0 12px rgba(255,255,255,0.8);
    animation: moveCloud 25s linear infinite;
}

.c2 {
    top: 35%;
    width: 90px;
    height: 60px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1), 20px 6px 0 12px rgba(255,255,255,0.8), -20px 10px 0 18px rgba(255,255,255,0.8), 0 22px 0 10px rgba(255,255,255,0.8);
    animation: moveCloud 30s linear infinite;
    animation-delay: -10s;
}

.c3 {
    top: 55%;
    width: 110px;
    height: 75px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1), 28px 9px 0 17px rgba(255,255,255,0.8), -28px 14px 0 22px rgba(255,255,255,0.8), 0 28px 0 14px rgba(255,255,255,0.8);
    animation: moveCloud 20s linear infinite;
    animation-delay: -5s;
}

.c4 {
    top: 75%;
    width: 85px;
    height: 55px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1), 18px 5px 0 11px rgba(255,255,255,0.8), -18px 8px 0 15px rgba(255,255,255,0.8), 0 20px 0 9px rgba(255,255,255,0.8);
    animation: moveCloud 35s linear infinite;
    animation-delay: -15s;
}

@keyframes moveCloud {
    from {
        left: -150px;
    }
    to {
        left: calc(100% + 150px);
    }
}

/* Weather Widget Styles */
.weather-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    width: 400px;
    min-height: 250px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    margin: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.weather-loading {
    text-align: center;
    color: #666;
}

.weather-content h3 {
    margin: 0 0 10px 0;
    color: #333;
}

.weather-temp {
    font-size: 2.5em;
    font-weight: bold;
    color: #0066cc;
    margin: 10px 0;
}

.weather-description {
    color: #000;
    margin: 5px 0;
}

.weather-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px;
}

.weather-detail {
    background: linear-gradient(45deg, #0000FF, #800080);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    color: white;
}

.detail-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.8);
}

.detail-value {
    font-weight: bold;
    color: white;
}

.weather-error {
    color: #d32f2f;
    text-align: center;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    margin: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    color: #000;
}

p {
    color: #000;
}

.profile-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: inset 0 0 0 2px white;
}

.profile-photo:hover {
    box-shadow: inset 0 0 0 4px white;
}

.photo-wrapper {
    margin: 20px auto;
    width: 154px;
    height: 154px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid white;
    transition: transform 0.3s ease;
}

.photo-wrapper:hover {
    transform: scale(1.05);
}

.contact-button {
    padding: 10px 20px;
    font-size: 16px;
    background: linear-gradient(45deg, #0000FF, #800080);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: transform 0.2s ease;
}

.contact-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}