body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    position: relative;
}

.hero-section {
    background-image: url('../img/Ursynalia 2012.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.4); 
}

.experience-section {
    background-image: url('../img/Ursynalia2012_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.experience-section > * {
    position: relative;
    z-index: 2;
}

.experience-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.experience-container h2 {
    font-size: 48px;
    margin-bottom: 40px;
    font-weight: bold;
}

.experience-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.experience-content h3 {
    font-size: 36px;
    margin: 0;
}

.experience-content iframe {
    width: 100%;
    max-width: 1200px;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.logo {
    max-width: 100%;
    height: auto;
    max-height: 80vh; 
    
}

.footer-logo {
    height: 60px;
    width: auto;
}

.text {
    display: inline;
}

.short-text {
    display: none;
}

.footer-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white; 
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

#copyright {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white; 
    font-size: 1.5vh;
    text-align: left;
    font-weight: normal;
    opacity: 50%;
    text-decoration: none;
    z-index: 10;
}


#contact {
    font-size: 20px;
    color: #fff;
    text-decoration: none;
}


@media (max-width: 768px) {
    .logo {
        max-height: 60vh;
    }
    .footer-text {
        font-size: 2vh;
    }
    #contact {
        font-size: 1.5vh;
    }
    #copyright{
        font-size: 1vh;
    }
    .footer-logo {
        height: 5vh;
    }
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    .experience-container h2 {
        font-size: 32px;
    }
    .experience-content h3 {
        font-size: 24px;
    }
    .experience-content iframe {
        max-width: 100%;
    }
    .experience-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 50vh;
    }
    .footer-text {
        font-size: 1.5vh;
        bottom: 30px;
    }
    #contact {
        font-size: 1.2vh;
    }
    #copyright {
        font-size: 0.8vh;
        bottom: 5px;
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .experience-content h3 {
        font-size: 18px;
    }
    .experience-content {
        gap: 20px;
    }
    .experience-section {
        padding: 30px 10px;
        min-height: auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .section-title {
        font-size: 40px;
    }
    .experience-content h3 {
        font-size: 28px;
    }
    .experience-content iframe {
        max-width: 100%;
    }
    .experience-section {
        padding: 60px 20px;
    }
}

@media (min-width: 1025px) {
    .section-title {
        font-size: 48px;
    }
    .experience-content h3 {
        font-size: 36px;
    }
}
