@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

body, h1, p, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(to right, #f5f5f5, #e3e9f1); /* Soft gradient background */
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

header {
    font-size: 50px;
    color: #2980b9;
    font-weight: bold;
    padding: 10px 20px;
}

.logo span {
    color: #f03d66;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

main p {
    font-size: 20px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
}

.hero-content {
    flex: 1;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-content h1 .hanna {
    color: #f03d66;
    font-weight: bold;
}

.hero-content h1 .ivan {
    color: #2980b9;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #000;
    text-align: justify;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.hero-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.connected-section {
    background: linear-gradient(135deg, #ffd4d4, #d1e3ff);
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
}

.connected-section h2 {
    font-size: 2.5rem;
    color: #f03d66;
    margin-bottom: 40px;
    margin-top: 1%;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.connected-container {
    max-width: 1200px;
    margin: auto;
}

.connected-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.icon-box {
    background: linear-gradient(135deg, #ffffff, #e8f2fc);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 30%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 3%;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #f3e5f5, #e8f2fc);
}

.icon-box img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.icon-box img:hover {
    transform: scale(1.1);
}

.icon-box h3 {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 10px;
}

.icon-box p {
    font-size: 1rem;
    color: #2c3e50;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .connected-content {
        flex-direction: column;
        align-items: center;
    }

    .icon-box {
        max-width: 90%;
        margin: 10px 0;
    }
}

#wizard-section {
    text-align: center;
}

#wizard-section h2 {
    font-size: 2.5em;
    color: #2980b9;
    margin-bottom: 5px;
}

.profile-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.profile-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background-color: #f1f1f1;
}

.profile-card img {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #2980b9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.profile-card img:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: #f03d66;
}

.profile-card figcaption {
    font-size: 1.2rem;
    color: #333;
    font-weight: bold;
}

footer {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 1rem;
    margin-top: 30px;
    position: relative;
    bottom: 0;
    width: 97.3%;
}

footer .footer-content p {
    margin: 10px 0;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .profile-container {
        flex-direction: column;
        align-items: center;
    }

    .profile-card {
        width: 100%;
        margin: 10px;
    }

    .hero-image img {
        width: 100%;
    }
}
