body {
    margin: 0;
    padding: 0;
    background-color: #f4f1ed;
}

html {
    scroll-behavior: smooth;
}

img {
    pointer-events: none;
}

.background-image {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("/images/colvene-main-background.png");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;  
}

.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 12% 40px 12%;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    color: white;
    transition: color 0.3s ease;
    background: transparent;
    z-index: 1000;
}

.header.scrolled {
    color: black;
    background: linear-gradient(to bottom, rgba(244, 241, 237, 0.8), rgba(255, 255, 255, 0));
}

.header.scrolled2 {
    background: linear-gradient(to bottom, rgba(146, 146, 146, 0.4), rgba(255, 255, 255, 0));
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.header-left a {
    margin-right: 60px;
}

.header-right a {
    margin-left: 60px;
}

.header-left a, .header-right a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-size: 16px;
    color: inherit;
    transition: color 0.3s ease;
}

.header-middle a {
    font-family: 'Perandory', sans-serif; 
    text-decoration: none;
    font-size: 36px;     
    color: inherit;   
    transition: color 0.3s ease;                                   
}

/* --- Responsive menu header --- */

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    transition: color 0.3s ease;
}

.hamburger.scrolled {
    color: black;
}

.mobile-menu-container {
    position: fixed;
    top: 60px; /* header height */
    left: 0;
    width: 100%;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1500;
    padding: 20px;
    box-sizing: border-box;
}

.mobile-menu-container.show {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu {
    background: lightgray;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.mobile-menu a {
    padding: 15px;
    text-decoration: none;
    color: #000;
    display: block;
    font-family: "Montserrat", sans-serif;
}

.mobile-menu a:hover {
    background: rgb(204, 203, 203);
}



@media (max-width: 1030px) {
    .nav-links {
        display: none;
    }

    .header {
        justify-content: center;
        padding: 20px 12% 20px 12%;
    }

    .hamburger {
        display: block;
    }

    .header-middle a {
        font-size: 48px;
    }
}


.hero {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero p {
    margin: 0;
    font-size: 54px;
    color: white;
    font-family: 'Catchy Mager', sans-serif;
}

.learn-more-button {
    margin-top: 100px;
    padding: 20px 40px;
    background-color: white;
    text-decoration: none;
    color: black;
}

.content-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
    padding: 3% 12%;
    height: 100%;
    /* max-width: 940px; 
    margin-left: auto;
    margin-right: auto; */
}

.content-left-title {
    margin-bottom: 30px;
}

.content-left-title h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
}

.content-left-text p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.content-right-section-container {
    display: flex;
    justify-content: right;
}

.content-right-section-container img {
    width: 100%;
    max-width: 400px;
}

.hero3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
    padding: 3% 12%;
    height: 100%;
    grid-template-areas: "left right";
}

.hero3-left-section {
    grid-area: left;
}

.hero3-right-section {
    grid-area: right;
}

.hero3-left-section img {
    width: 100%;
    max-width: 400px;
}

.hero3-right-title {
    margin-bottom: 30px;
}

.hero3-right-title h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
}

.hero3-right-text p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.hero4 {
    padding: 3% 80px;
}

.hero4-background-image {
    display: flex;
    height: 90vh;
    flex-direction: column;
    text-align: center;
    background-image: linear-gradient(rgba(60, 60, 60, 0.6), rgba(60, 60, 60, 0.6)), url("/images/colvene-needs-wants.png");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;  
    padding: 80px;
    box-sizing: border-box;
}

.hero4-title h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
    color: white;
}

.hero4-text {
    margin-top: 60px;
    margin-bottom: 60px;
}

.hero4-text p {
    margin: 0;
    color: white;
    font-family: "Montserrat", sans-serif;
}

.hero4-button {
    display: inline-block;
    align-self: center;
    text-decoration: none;
    padding: 20px 30px;
    color: white;
    background-color: black;
}

.hero5 {
    padding: 3% 12%;
}

.hero5-title h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
    color: black;
}

.hero5-text p {
    margin: 0;
    color: black;
    font-family: "Montserrat", sans-serif; 
}

.hero5-consultation-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 0px;
    align-items: center;
    background-color: #222222;
    max-width: 100%;
}

.consultation-label {
    display: flex;
    justify-content: left;
    align-items: center;
    width: 100%;
    color: white;
    margin: 0px 7px 7px 7px;
    padding: 4px;
    border-bottom: 2px solid white;
}

.consultation-label label {
    margin-right: 12px;
}

.consultation-label select {
    border-radius: 0;
    border: 2px solid white;
    color: white;
    background: #222222;
    padding: 6px;
}

.hero5-consultation-container form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    width: 99%;
    box-sizing: border-box;
}

.hero5-consultation-container input {
    width: 100%;
    margin: 10px;
    padding: 4px;
    border: none;
    border-bottom: 2px solid white;
    background-color: transparent;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}

.hero5-consultation-container input::placeholder {
    color: white;
}

.hero5-consultation-container input:focus {
    outline: none;
}

.hero5-consultation-container button {
    padding: 20px 50px;
    color: black;
    background-color: white;
    border: none;
    margin-right: 20px;
}

.hero5-consultation-container button:hover {
    cursor: pointer;
}

.button-container {
    display: flex;
    justify-content: left;
    width: 100%;
    align-items: center;
}

#button-status {
    margin: 0;
    color: white;
    font-family: "Montserrat", sans-serif; 
}

.colvene-form-image {
    width: 100%;
    box-sizing: border-box;
}

.colvene-form-image img {
    width: 100%;
}

.footer {
    display: flex;
    flex-direction: column;
    padding: 80px 12% 80px 12%;
    background-color: #222222;
}

.footer-top {
    margin-bottom: 80px;
}

.footer-top a {
    font-family: 'Perandory', sans-serif; 
    text-decoration: none;
    font-size: 54px;     
    color: white;   
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    font-family: "Montserrat", sans-serif;
}

.footer-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid white;
    color: white;
}

.footer-section h3 {
    font-size: 24px;
}

.footer-hour p {
    margin: 0;
}

.footer-section svg {
    margin-right: 18px;
}

.footer-reservation-phone, .footer-reservation-email {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    text-decoration: none;
}

.footer-reservation-email a {
    color: white;
    text-decoration: none;
}

.footer-tag {
    padding: 10px;
    border: 1px solid white;
    text-align: center;
    border-radius: 25px;
    margin-top: 24px;
}

.footer-tag a {
    color: white;
    text-decoration: none;
}

/* --- Media queries home page --- */

@media (max-width: 1000px) {
    .footer-top {
        margin-bottom: 40px;
    }

    .hero4 {
        padding: 3% 0px;
    }

    .hero4-background-image {
        padding: 80px 40px;
        height: 95vh;
    }

    .hero4-title h1 {
        font-size: 48px;
    }

    .hero4-text {
        margin: 30px 0px;
    }
}

@media (max-width: 840px) {
    .content-container {
        padding: 6% 12%;
    }

    .content-right-section-container {
        display: flex;
        justify-content: center;
    }

    .hero3 {
        padding: 6% 12%;
        grid-template-areas:
            "right"
            "left";
    }

    .hero3-left-section {
        display: flex;
        justify-content: center;       
    }
}

@media (max-width: 670px) {
    .hero4-title h1 {
        font-size: 40px;
    }

    .hero4-background-image {
        padding: 40px 20px;
    }
}

@media (max-width: 600px) {
    .hero5 {
        padding: 6% 1%;
    }

    .hero5-consultation-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .hero5-title {
        padding: 0px 11%;
    }

    .hero5-text {
        padding: 0px 11%;
    }
}

/* --- About us section --- */

.background-image-about {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("/images/colvene-about-background.png");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;
}

.hero2-about {
    padding: 3% 80px;
}

.hero2-about-background-image {
    display: flex;
    height: 90vh;
    flex-direction: column;
    text-align: center;
    background-image: linear-gradient(rgba(60, 60, 60, 0.6), rgba(60, 60, 60, 0.6)), url("/images/colvene-hero2-about.JPG");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;  
    padding: 80px;
    box-sizing: border-box;
}

.hero2-about-title h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
    color: white;
}

.hero2-about-text {
    margin-top: 60px;
    margin-bottom: 60px;
}

.hero2-about-text p {
    margin: 0;
    color: white;
    font-family: "Montserrat", sans-serif;
}

.hero3-about-left-button {
    display: inline-block;
    align-self: center;
    text-decoration: none;
    padding: 20px 30px;
    color: white;
    background-color: black; 
    margin-top: 30px;
}

/* --- Media queries About us --- */

@media (max-width: 1400px) {
    .hero2-about-background-image {
        height: 95vh;
        padding: 20px;
    }
}

@media (max-width: 930px) {
    .hero2-about-text {
        margin-top: 30px;
    }

    .hero2-about-background-image {
        height: 100%;
    }

    .hero2-about {
        padding: 3% 20px;
    }
}

@media (max-width: 840px) {
    .hero3-about {
        padding: 6% 12%;
    }
}

/* --- Services section --- */

.background-image-services {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("/images/colvene-services-background.png");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;
}

.collection-container {
    display: flex;
    flex-direction: column;
    padding: 3% 12%;
}

.collection-container h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
}

.collection-container h3 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin: 0;
}

.collection-item-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.collection-item img {
    width: 100%;
    height: 100%;
}

.collection-item p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}

.collection-item-title p {
    font-weight: bold;
}

.service-price-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0px 6% 3% 6%;
    box-sizing: border-box;
}

.service-price-container p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}




/* --- Gallery section --- */

.background-image-gallery {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("/images/colvene-gallery-background.JPG");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;
}

.slider-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 6%;
    box-sizing: border-box;
}

.slider-title {
    display: flex;
    flex-direction: column;
    width: 600px;
    justify-content: left;
}

.slider-title h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 54px;
    font-weight: 100;
    margin: 0;
}

.slider-title h3 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin: 0;
}

.slider {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 350px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background: #000;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    flex-shrink: 0;
}

.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 750px) {
    .slider-title {
        width: 100%;
    }

    .slider {
        width: 100%;
        height: 250px;
    }

    .slides img {
        height: 250px;
    }
}


/* --- FAQ section --- */

.background-image-faq {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("/images/colvene-faq-background.JPG");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;
}

.faq-items-container {
    font-family: "Montserrat", sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: start;
    padding: 3% 12%;
    height: 100%;
}

.faq-item { 
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-question { 
    display: flex; 
    align-items: center; 
    cursor: pointer; 
    font-weight: bold; 
}

.faq-question svg { 
    margin-left: 8px; 
    transition: transform 0.2s ease; 
}

.faq-answer { 
    display: none; 
    margin-top: 8px; 
}

.faq-item.active .faq-answer { 
    display: block; 
}

.faq-item.active .faq-question svg { 
    transform: rotate(90deg); 
}

@media (max-width: 550px) {
    .faq-items-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}


/* --- Contact section --- */

.background-image-contact {
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url("/images/colvene-contact-background.png");
    background-repeat: no-repeat;  
    background-size: cover;           
    background-position: center;
}

.contact-info-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 6% 12%;
    box-sizing: border-box;
}

.contact-info {
    padding: 60px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h1 {
    font-family: 'Catchy Mager', sans-serif;
    font-size: 40px;
    font-weight: 100;
    margin: 0;
}

.contact-info p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
}