/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: radial-gradient(circle, #8fbfff, #e6f3ff);
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(0, 102, 204, 0.3);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px;
    height: auto;
    margin-right: 10px;
}

header h1 {
    color: #0066cc;
    margin: 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    text-decoration: none;
    color: #0066cc;
}

nav ul li a:hover {
    color: #004499;
    text-decoration: underline;
}

.wallet-section {
    text-align: center;
    padding: 30px;
    margin-bottom: 50px;
}

.wallet-section button {
    padding: 12px 25px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.wallet-section button:hover {
    background-color: #0055bb;
}

/*.image-section {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 0 50px;
} */

.info-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
}

.glass-box {
    width: 280px;
    background: rgba(255, 255, 255, 0.2); /* Palautettu alkuperäinen lasiefekti */
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.glass-box:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.glass-box h3 {
    color: #0066cc;
    margin-bottom: 10px;
}

.glass-box p {
    color: #333;
    font-size: 14px;
}

footer {
    text-align: center;
    padding: 30px;
    margin-top: auto;
    border-top: 2px solid rgba(0, 102, 204, 0.3);
}

footer p {
    margin: 0;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    text-decoration: none;
    color: #0066cc;
}

footer ul li a:hover {
    color: #004499;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #e6f3ff, #8fbfff);
    padding: 40px;
    border-radius: 20px;
    width: 700px; /* Increased size */
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    color: #333;
    box-shadow: 0 0 30px rgba(0, 102, 204, 0.5);
    position: relative;
    margin: auto; /* Ensure centering */
}

.close-button {
    float: right;
    cursor: pointer;
    font-size: 28px;
    color: #0066cc;
    transition: color 0.3s ease;
    position: absolute;
    right: 20px;
    top: 10px;
}

.close-button:hover {
    color: #004499;
}

/* PayPal button suurennus */
.paypal-button {
    width: 150px; /* Suurennettu koko */
    height: auto;
}

/* Favicon pyöreäksi */
link[rel="icon"] {
    border-radius: 50%; /* Pyöreä favicon */
}

/* Lisää nämä tyylit nykyisen CSS-tiedostosi loppuun */

/* Kuvien asettaminen vasemmalle ja oikealle */
.image-left, .image-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.image-left {
    left: 10%;
}

.image-right {
    right: 10%;
}

/* Kuvien tyyli ja feidaus */
.image-style {
    width: 150px; /* Kuvan koko pienennetty */
    height: 150px;
    border-radius: 50%; /* Pyöreät reunat */
    object-fit: cover;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.3)); /* Feidaus reunoissa */
}
