@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playwrite+HU:wght@100..400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-brand: #ffadba;
    --color-brand-secondary: #ffadbbe0;
}

body, html {
    display: flex;
    flex-direction: row;
    background-color: #363533;
    margin: 0;
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 60px;
}

section {
    margin-bottom: 50px;
}

input {
    font-family: "Poppins", sans-serif;
    border: none;
    outline: none;
    background-color: #292827;
    width: 300px;
    height: 45px;
    border-radius: 10px;
    color: white;
    font-size: inherit;
    padding-left: 15px;
}

textarea {
    font-family: "Poppins", sans-serif;
    border: none;
    outline: none;
    background-color: #292827;
    border-radius: 10px;
    color: white;
    font-size: inherit;
    padding-left: 15px;
    padding-top: 15px;
}

#email {
    width: auto;
}

#subject {
    width: auto;
}

#photoshootType {
    width: auto;
}

label {
    color: white;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 2.5px;
}

.sidebar {
    position: fixed;
    display: flex;
    flex-direction: column;
    background-color: #292827;
    height: 100%;
    width: 225px;
    gap: 25px;
    z-index: 2;
}

.sb-seperator {
    background-color: #4a4846;
    width: 85%;
    height: 1.5px;
    border: none;
    border-radius: 15px;
    margin-top: -15px;
}

.sb-title {
    font-family: "Poppins", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 75px;
    padding-top: 20px;
    font-size: 25px;
    color: var(--color-brand);
}

.sb-subtitle {
    display: flex;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    width: 100%;
    font-family: "Montserrat", sans-serif;
    color: grey;
    font-size: 13px;
    margin-top: -35px;
}

.buttons {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    gap: 10px;
}

.sb-button {
    font-family: "Poppins", sans-serif;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 20px;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    width: 50px;
}

.sb-button:hover {
    border-left: 2px solid var(--color-brand);
    cursor: pointer;
}

.sb-button.active {
    border-left: 2px solid var(--color-brand);
}

.content {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: url(/assets/hero.jpg);
    background-size: cover;
    width: 100%;
    min-height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.h-title {
    color: whitesmoke;
    font-family: "Playwrite HU", cursive;
    font-size: 45px;
}

.h-button {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: inherit;
    background-color: var(--color-brand);
    border: 2.5px solid transparent;
    padding: 10px 25px;
    border-radius: 13px;
    transition: background-color 0.3s ease;
}

.h-button:hover {
    background-color: var(--color-brand-secondary);
    cursor: pointer;
}

.photos {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.s-title {
    font-family: "Poppins", sans-serif;
    color: var(--color-brand-secondary);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.image {
    position: relative;
    display: inline-block;
}

.image img {
    height: 350px;
    width: auto;
    display: block;
    border-radius: 12px;
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 233px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 11px;
}

.overlay-alt {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
}

.image:hover .overlay {
  opacity: 1;
}

.image:hover .overlay-alt {
  opacity: 1;
}

.fa-solid {
    color: var(--color-brand);
    font-size: 35px;
}

.about {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.ab-presence {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.ab-socials {
    display: flex;
    gap: 15px;
    font-size: 30px;
    color: var(--color-brand);
}

.ab-socials .fa-brands {
    transition: transform 0.3s ease;
}

.ab-socials .fa-brands:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.ab-intro {
    display: flex;
    justify-content: space-around;
    width: 50%;
}

.ab-picture {
    height: 375px;
    border-radius: 25px;
}

.ab-intro h1 {
    font-family: "Montserrat", sans-serif;
    color: white;
}

.ab-about {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 525px;
    padding-left: 25px;
    color: whitesmoke;
}

.contact {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.c-button {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: inherit;
    background-color: var(--color-brand);
    border: 2.5px solid transparent;
    padding: 8px 25px;
    border-radius: 13px;
    transition: background-color 0.3s ease, border 0.3s ease;
    margin-bottom: 50px;
}

.c-button:hover {
    border: 2.5px solid var(--color-brand);
    background-color: transparent;
    color: white;
    cursor: pointer;
}

.container {
    width: 50%;
    margin: 0 auto;
    padding: 20px;
}

.testimonials {
    padding: 80px 0;
    text-align: center;
    margin: 40px auto;
    border-radius: 8px;
}

.testimonials h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #007bff;
    border-radius: 8px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    width: 100%;
    padding: 40px;
    border-radius: 10px;
    background-color: #292827;
    margin: 0 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-text {
    font-size: 1.5em;
    color: whitesmoke;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1; 
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border-top: 1.5px solid #4a4846;;
    padding-top: 20px;
}

.author-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: "Poppins", sans-serif;
    font-size: 1.2em;
    font-weight: 700;
    color: white;
}

.author-title {
    font-size: 0.9em;
    color: grey;
    margin-top: 3px;
}

.stars {
    color: #ffc107;
    margin-top: 5px;
}

.stars i {
    margin-right: 2px;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--color-brand-secondary);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
   background-color: var(--color-brand);
}

.carousel-button.prev {
    left: -25px;
}

.carousel-button.next {
    right: -25px;
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: #292827;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--color-brand);
}

@media (max-width: 768px) {
    .modal {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .modal-content {
        display: flex;
        padding: 0;
        margin: 0;
        transform: scale(0.7);
    }

    .hero {
        display: flex;
        align-items: center;
        text-align: center;
    }

    .inline-input {
        display: flex;
        flex-direction: column;
    }

    .contact {
        transform: scale(0.9);
    }

    .testimonials {
        display: flex;
        align-items: center;
        width: auto;
        padding: 0;
        margin: 0;
    }

    .ab-intro {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sidebar {
        display: none;
    }

    .testimonials {
        padding: 50px 0;
    }

    .testimonials h2 {
        font-size: 2em;
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 30px;
        min-height: 250px;
    }

    .author-img {
        width: 60px;
        height: 60px;
    }

    .author-name {
        font-size: 1.1em;
    }

    .author-title {
        font-size: 0.85em;
    }

    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
        padding: 8px 12px;
    }

    .carousel-button.prev {
        left: 5px;
    }

    .carousel-button.next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .sidebar {
        display: none;
    }

    .testimonials {
        padding: 30px 0;
    }

    .testimonials h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .testimonial-card {
        padding: 20px;
        min-height: 220px;
    }

    .testimonial-text {
        font-size: 1em;
    }

    .author-img {
        width: 50px;
        height: 50px;
    }

    .author-info {
        font-size: 0.9em;
    }

    .carousel-button {
        display: none;
    }

    .dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
}

.modal {
    display: none;
    position: fixed; 
    z-index: 1000; 
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; 
    overflow: auto;
    background-color: rgba(0,0,0,0.9); 
}

.modal-content {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%; 
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    animation-name: zoom;
    animation-duration: 0.6s;
}
.caption {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    text-align: center;
    color: #f0f0f0;
    padding: 15px 0;
    min-height: 20px;
    font-size: 1.1em;
    animation-name: zoom;
    animation-duration: 0.6s;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 45px;
    font-weight: bold;
    transition: 0.3s; 
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}