@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&family=Great+Vibes&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Colors */
    --primary-color: #fdfdfd;
    --font_color: gold;
    --main_font: "Merriweather", serif;
    --elegant_font: "Great Vibes", cursive;
    --header_font: "Corinthia", cursive;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html {
    font-size: 62.5%;
    font-family: "Poppins", sans-serif;
}

body {
    width: 100%;
    background-color: var(--primary-color);
}

img {
    user-select: none;
}

/* Header */
/* General Header Styles */


header {
    user-select: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #efbf04;
    padding: 1rem 0;

    z-index: 1000;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
    opacity: 0;
}


.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: column;
}

.header_logo {
    width: 150px;
    margin-bottom: 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

.nav_item a {
    text-decoration: none;
    color: black;
    font-size: 1.6rem;
    font-family: var(--main_font);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.nav_item a:hover {
    color: #efbf04;
}

.nav_item a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #efbf04;
    transition: width 0.3s ease;
}

.nav_item a:hover::after {
    width: 100%;
}




/* Contact Info */
.contact_info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
}

.contact_info ion-icon {
    font-size: 1.6rem;
    color: #333;
}

.contact_info a {
    text-decoration: none;
    color: #333;
}

.contact_info a:hover {
    color: #efbf04;
    text-decoration: underline;
}

/* Burger Menu Styles (Mobile) */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.contact-mail,
.contact-tel {

    display: flex;
    flex-direction: row;
    justify-content: center;
}

.md {
    margin-right: 1rem;
}


.lang {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 1.6rem;
    font-family: var(--main_font);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.lang:hover {
    color: #efbf04;
}

.lang::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    /* Adjusted to align with the padding */
    width: 0;
    height: 3px;
    background-color: #efbf04;
    transition: width 0.3s ease;
}

.lang:hover::after {
    width: 100%;
}



/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .contact_info {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        color: #fff;
    }

    .nav_links.active {
        right: 0;
    }

    .nav_links {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .header_logo {
        margin-left: 10rem;
        margin-top: 1rem;
    }

    .header_container {
        display: flex;
        flex-direction: row;
    }
}


/* Services Section */
.services {
    margin-top: 10rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    justify-content: center;
    background-color: var(--primary-color);
}

.h1_div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Section Title */
.services h1 {
    font-family: var(--header_font) !important;
    text-align: center;
    font-size: 5rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #efbf04;
    max-width: fit-content;
    font-family: 'Merriweather', serif;
    color: #333;
    width: 100%;
}

/* Individual Service Box */
.service {
    flex: 1 1 300px;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Service Box */
.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Service Titles */
.service h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Merriweather', serif;
}

/* Service Descriptions */
.service p {
    font-size: 1.4rem;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

/* More Services Button */
.more-services-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 1.6rem;
    font-family: 'Open Sans', sans-serif;
    background-color: #efbf04;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button Hover Effect */
.more-services-button:hover {
    background-color: #d1a903;
    transform: scale(1.05);
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }

    .service {
        max-width: 90%;
    }
}



/* Contact Info */

.contact_info {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.4rem;
    color: #333;
}

.contact_info p a,
.contact_info a {
    text-decoration: none;
    color: black;
    margin-bottom: 1rem;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;

}

.contact_h2 {
    font-size: 2.5rem;
    font-family: var(--main_font);
    margin-bottom: 1rem;
}

.contact_p {
    font-size: 1.6rem;
    max-width: 50%;
    font-family: var(--main_font);
}

.contact_info ion-icon {
    font-size: 1.6rem;
    color: #333;
}

.ct_info a {
    text-decoration: none;
    font-size: 2rem !important;
    color: #333;
}

.contact_info a:hover {
    color: #efbf04;
    text-decoration: underline;
}

/* Burger Menu Styles (Mobile) */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.contact-mail,
.contact-tel {

    display: flex;
    flex-direction: row;
    justify-content: center;
}

.md {
    margin-right: 1rem;
}


.lang {
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-size: 1.6rem;
    font-family: var(--main_font);
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    width: 10rem;
    margin-left: 1rem;
}

.lang:hover {
    color: #efbf04;
}

.lang::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    /* Adjusted to align with the padding */
    width: 0;
    height: 3px;
    background-color: #efbf04;
    transition: width 0.3s ease;
}

.lang:hover::after {
    width: 100%;
}



/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .contact_info {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        color: #fff;
    }

    .nav_links.active {
        right: 0;
    }

    .nav_links {
        display: flex;
        flex-direction: column;
        height: 100vh;
    }

    .header_logo {
        margin-left: 10rem;
        margin-top: 1rem;
    }

    .header_container {
        display: flex;
        flex-direction: row;
    }
}





.faq {
    padding: 20px;
    background-color: #fff;
}

.faq-item h3 {
    margin-bottom: 5px;
    color: #333;
}

.contact-cta {
    text-align: center;
    padding: 30px 20px;
    background-color: f9f9f9;

}

.cta-button {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    background-color: #fff;
    color: #efbf04;
    text-decoration: none;
    font-size: 1.6rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f5da79;
}



/* Faq Section */


/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: var(--primary-color);
    border-radius: 12px;
}

.faq_h2 {
    font-size: 5rem;
    font-family: var(--header_font);
    color: black;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 2px solid #efbf04;
    margin-bottom: 5rem;
}

.faq_cont {
    width: 60%;
}

.faq_container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
}

.faq_image {
    width: 30%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.accordion {
    flex: 1;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion_item {
    border-bottom: 1px solid #e0e0e0;
}

.accordion_button {
    background-color: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.6rem;
    font-family: var(--main_font);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: background-color 0.3s ease;
}

.accordion_button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--font_color);
    transition: transform 0.3s ease;
}

.accordion_button.active::after {
    content: '-';
}

.accordion_button:hover {
    background-color: #f9f9f9;
}

.accordion_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1rem;
}

.accordion_content p {
    margin: 1rem;
    font-size: 1.4rem;
    font-family: var(--main_font);
    color: #666;
}

.accordion_content.show {
    max-height: 200px;
}



/* Footer Section */


/* Footer */
.footer {
    margin-top: 2rem;
    background-color: var(--primary-color);
    color: #333;
    padding: 20px 0;
    padding-bottom: 0;
    border-top: 1px solid #ddd;
    font-family: 'Open Sans', sans-serif;
}

.footer_container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

.footer_section {
    flex: 1 1 250px;
    min-width: 150px;
    max-width: fit-content;

}

.footer_section h2 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    max-width: fit-content;
    color: #333;
    text-transform: uppercase;
}

.footer_section p,
.footer_section a {
    font-size: 1.4rem;
    color: #555;
    line-height: 1.6;
    text-decoration: none;
    max-width: fit-content;

    margin-bottom: 8px;
}



.footer_section ul {
    list-style: none;
    max-width: fit-content;
    padding: 0;
    margin: 0;
}

.footer_section ul li {
    margin-bottom: 8px;
    max-width: fit-content;

}

.footer_bottom {
    text-align: center;
    padding: 10px 0;
    background-color: var(--primary-color);
    border-top: 1px solid #efbf04;
    color: black;
    font-size: 1.4rem;
}

.footer_bottom p a {
    color: #efbf04;
    font-weight: bold;
}

.footer_section a {
    position: relative;
    text-decoration: none;
    color: #555;
    font-size: 1.4rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.footer_section a:hover {
    color: #efbf04;
}

.footer_section a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    /* Adjust the position of the underline */
    width: 0;
    height: 3px;
    /* Thickness of the underline */
    background-color: #efbf04;
    transition: width 0.3s ease;
}

.footer_section a:hover::after {
    width: 100%;
    /* Full underline */
}




@media screen and (max-width: 768px) {

    .faq_h2 {
        font-size: 3rem;
    }

    .faq_hr {
        display: none;
    }


    .footer_container {
        justify-content: flex-start;
        margin-left: 5rem;
    }

    .service{
        max-height: fit-content;
    }
    .contact_p{
        max-width: fit-content;
    }

    .faq_cont {
        width: 35rem;
    }

}