/**styles.css**/

/** Header styling **/
.site-title {
    display: flex;
    align-items: center;
    gap: -0px;
    color: black;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 10px;
}

.title_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.H {
    font-size: 80px;
    color: #33ccff;
    font-weight: normal;
    margin-right: 50px;
    animation: flyInFromTop 1s ease-out forwards;
}

.A {
    font-size: 80px;
    font-weight: normal;
    color: #2e74b5;
    animation: flyInFromTop 1s ease-out forwards;
}

.P {
    font-size: 80px;
    font-weight: normal;
    color: #1e0ab6;
    animation: flyInFromTop 1s ease-out forwards;
}

.divider{
    width: 2px;
    height: 120px;
    background-color: #5b9bd5;
    opacity: 0;
    animation : fadeIn 0.8s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn { /** divider animation **/
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.contact_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 20px;
    font-size: 14px;
    color: grey;
    animation: flyInFromTop 1s ease-out forwards;
}

.contact_line {
    margin-bottom: 8px;
}

.advies{
    font-size: 18px;
    font-weight: normal;
    color: #538135;
    margin-left: 80px;
    animation: flyInFromBottom 1s ease-out forwards;
}

@keyframes flyInFromTop { /** site HAP title animatiom **/
    from {
        transform: translateY(-150px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes flyInFromBottom { /** site Advies title animation **/
    from {
        transform: translateY(150px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/** Main body styling **/
main { 
    padding: 60px 20px; 
    position: relative;
    background-image: url("visuals/achtergrond.jpg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(0.8px);
}

.container{
    max-width: 400px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 2px 5px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1s;
}

.container_photos {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 1.5s;
}

.photo_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    background-color: white;
    border-radius: 12px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 2s;
}

.photo_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    text-align: center;
}

.photo_text {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.status {
    font-weight: bold;
    color: red
}

.photo_divider {
    width: 40px;
    height: 1px;
    background-color: #ddd;
}

.location {
    color: #666;
    font-size: 12px;
}

.photo_card img {
    width: 100%;
    max-width: 280px;
    height: 250px;;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/** body margins **/
.container + .container_photos{ margin-top: 200px; }

/** body animations **/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pageReveal {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/** Body text styling **/
h2 {
    text-align: center;
    font-weight: normal;
}

p {
    text-align: center;
    font-weight: normal;
}

.h_little {
    color: #33ccff;
    font-weight: normal;
    font-size: 35px;
}

.a_little {
    color: #2e74b5;
    font-weight: normal;
}

.p_little {
    color: #1e0ab6;
    font-weight: normal;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background-color: white;
    color: black;
}

/** Footer styling **/
footer {
    margin-top: 80px;
    background-color: white;
    border-top: 1px solid #ddd;
}

.footer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
    color: #555;
}

