
/* Define CSS variables */
:root {
    --main-font: "Outfit", sans-serif;
    --background-color: #f5f5f5;
    --primary-color: #00144e;
    --header-font-size: 3rem;
    --subheader-font-size: 2.5rem;
    --paragraph-font-size: 1.5rem;
}

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--main-font);
}
h1{
    text-align: center;
    font-size: var(--header-font-size);
}
h2{
    font-size: var(--subheader-font-size);
}
p{
    font-size: var(--paragraph-font-size);
}
/* Hero section */
.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: var(--background-color);
}

.hero-img-container {
    flex: 2;
    padding: 0 0 0 1rem;
}

.hero-img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/* Status section */
.status-container {
    flex: 1;
    text-align: center;
    padding: 1rem;
    font-size: var(--paragraph-font-size);
}

.status-header {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.status-details {
    list-style-type: none;
    padding: 0 0 1rem 0;
}

/* Contact button */
.contact-button {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: var(--paragraph-font-size);
}

/* Picture gallery */
.pictures-section{
    padding: 2rem;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(49,77,99,1) 100%);
}
.picture-header{
    padding: 0 0 3rem 0;
    text-decoration: underline;
}
.pictures-container {
    display: flex;
    gap: 1.5rem;
}

.pictures-card img {
    max-width: 100%;
    max-height: 100%;
    padding: 0 0 1rem 0;
}

.pictures-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.left p{
    color: white;
}

/* Text section */
.text-section {
    background-color: var(--background-color);
    padding: 0.5rem 1rem 2rem 1rem;
}

.text-container {
    display: flex;
    gap: 3rem;
}

.text-card-header {
    padding: 0 0 1rem 0;
}

/* Image gallery */
.gallery-container {
    position: relative;
    margin: auto;
}

.gallery-slides {
    display: none; /* Hide images by default */
}

.gallery-slides-img {
    max-width: 100%;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -2rem;
    padding: 1rem;
    color: rgb(0, 0, 0);
    opacity: 75%;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.6s ease;
    border-radius: 0 0.5rem 0.5rem 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 0.5rem 0 0 0.5rem;
}

/* Caption text */
.gallery-slides-text {
    color: #f2f2f2;
    font-size: var(--subheader-font-size);
    padding: 0.5rem 1rem;
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
}

/* Dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}

@media only screen and (max-width: 720px) {
    .hero-container{
        flex-direction: column;
        min-height:90vh;
        gap: 0;
        
    }
    .hero-img{
        filter:blur(0) !important;
        -webkit-filter: blur(0) !important;
    }
    .hero-img-container {
        flex:1;
        padding:0;
        display:flex;
        justify-content: center;
        align-items: center;
    }
    .status-container{
        flex:1;
    }
    .pictures-container{
        flex-direction: column;
    }
    .text-container{
        flex-direction: column;
        gap:2rem;
    }
    .left p{
        color: black;
    }
}