body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
}

p {
    font-size: 1.2rem;
    color: #eef9ff;
    margin-bottom: 30px;
}

.photo-link {
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
    background-color: #f8f9fa;
    border: 2px solid #FF6A01;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: left;
    padding: 15px;
    display: block;
    width: 100%;
    position: relative;
}

.photo-link:hover {
    background-color: #FF6A01;
    color: #fff;
    text-decoration: none;
}

.photo-link.active {
    background-color: #FF6A01;
    color: #fff;
}

.photo-link .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.photo-link.active .arrow {
    transform: translateY(-50%) rotate(180deg); /* Rotate arrow when active */
}

.photo-container {
    display: none; /* Hidden by default */
    margin-top: 10px;
    text-align: center;
}

.photo-container img {
    max-width: 100%;
    max-height: 400px; /* Set a maximum height for consistency */
    width: auto;
    height: auto;
    border-radius: 10px;
    border: 2px solid #FF6A01;
    transition: transform 0.3s ease; /* Scale effect */
    margin-bottom: 15px; /* Space added only when image exists */
}

.photo-container img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}



/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .photo-link {
        font-size: 1rem;
    }

    .photo-container img {
        max-height: 300px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 0.9rem;
    }

    .photo-link {
        font-size: 0.9rem;
    }

    .photo-container img {
        max-height: 200px; /* Adjust height for mobile screens */
    }
}

/* Zoom-in effect when image appears */
@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.zoom-in {
    animation: zoomIn 0.4s ease-out;
}


