/* Photos Gallery */
.section img {
    width: auto;
    max-width: 100%;
    max-height: 600px;
    display: block;
    margin: 0 auto 4rem auto;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.section img:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.6);
    border-color: rgba(167, 139, 250, 0.6);
}
.hero {
    padding-bottom: 2rem;
}

.hero h1 {
    margin-bottom: 1rem;
}

.divider {
    margin: 2rem auto 4rem auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .section img {
        max-height: 400px;
        margin-bottom: 2rem;
    }
}

.txt {
    text-align: center;
    padding: 6rem 2rem 4rem;
    position: relative;

    
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.txt h1 {
    font-size: 100px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
}
/* Responsive */
@media screen and (max-width: 768px) {
    .section img {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .txt h1{
        font-size: 30px;
    }
}