@import url('https://fonts.googleapis.com/css2?family=Londrina+Sketch&family=Roboto+Slab:wght@100..900&display=swap');

:root {
    --main_font: "Londrina Sketch", sans-serif;
    --secnd_font: "Roboto Slab", serif;
    --gold: #d4af37;
    --font_color: #f2f2f2df;
}

/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img,
a {
    user-select: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    overflow-x: hidden;
    font-family: var(--secnd_font) !important;
}

body {
    background-color: #0b0b0b;
    color: var(--font_color);
    line-height: 1.6;
    overflow-x: hidden;
}

.loader {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    /* Initially hidden */
}

a {
    text-decoration: none;
    color: #d4af37;
    /* Primary color */
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    /* Change color on hover */
}

/* Header Section */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100vw;
    top: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
}

.logo a {
    color: var(--gold);
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    font-family: var(--main_font);
    /* Elegant font for logo */
}

/* Navigation Links */
.nav_links {
    display: flex;
    gap: 20px;
}

.nav_links ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav_links ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.nav_links ul li a:hover {
    color: var(--gold);
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Trigger */
.dropdown>a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    transition: color 0.3s ease;
    display: inline-flex;
    /* Align the trigger properly */
    align-items: center;
    /* Center text and icon */
}

.dropdown>a:hover {
    color: var(--gold);
}

/* Dropdown Content */
.dropdown-content {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    /* Align directly below the trigger */
    left: 0;
    background-color: #444;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px 0;
    z-index: 10;
    min-width: 180px;
    /* Ensures consistent width */
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Dropdown Links */
.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content li a img {
    margin-right: 10px;
    /* Adds space between the flag and text */
    width: 20px;
    height: 20px;
    border-radius: 50%;
    /* Makes icons circular for aesthetics */
}

.dropdown-content li a:hover {
    background-color: #555;
    /* Highlight effect */
    color: var(--gold);
}

/* Adjust the default state of the dropdown for non-hover */
.dropdown-content {
    visibility: hidden;
    /* Ensures no visual issues when not hovered */
    opacity: 0;
    transform: translateY(-10px);
    /* Slightly hidden above */
    transition: all 0.3s ease-in-out;
}

/* When hovered */
.dropdown:hover .dropdown-content {
    visibility: visible;
    /* Make visible on hover */
    opacity: 1;
    transform: translateY(0);
    /* Slide into position */
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .dropdown-content {
        left: auto;
        right: 0;
        /* Align dropdown to the right on smaller screens */
    }
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}

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

/* Rotate burger lines when active */
.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);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav_links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: #333;
        color: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.3s ease;
    }

    .nav_links.active {
        right: 0;
    }

    .burger-menu {
        display: flex;
    }

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


/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url("../img/background.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--font_color);
    text-align: center;
    padding: 0 2rem;
    box-sizing: border-box;
}

.hero h1 {
    font-size: 6rem;
    /* Keep the size for larger screens */
    max-width: 100rem;
    margin-bottom: 2rem;
    font-family: var(--main_font);
    line-height: 1.2;
}

.hero h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    max-width: 80rem;
    line-height: 1.5;
}

.hero a {
    text-transform: uppercase;
    font-size: 1.6rem;
    background-color: #333333c5;
    border: 1px solid var(--gold);
    color: var(--gold);
    letter-spacing: 3px;
    padding: 1rem 2rem;
    text-align: center;
    transition: background-color 0.5s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.hero a:hover {
    background-color: #ffffff;
    color: #d4af37;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .dropdown-content {
        left: auto;
        right: 0;
        /* Align dropdown to the right on smaller screens */
    }
}


/* Rotating Strip Styling */
.rotating-strip {
    height: 4rem;
    width: 100vw;
    background-color: var(--gold);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.rotating-text {
    display: flex;
    gap: 2rem;
    /* Space between each text item */
    animation: rotateText 300s linear infinite;
    white-space: nowrap;
}

.rotating-text span {
    font-size: 2rem;
    color: rgb(0, 0, 0);
    font-family: var(--main_font);
    font-weight: 900;
    user-select: none;
}


/* About Section */
.about {
    width: 100vw;
    height: 65vh;
    background-color: #0b0b0b;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 2rem;
    /* Add padding for better spacing */
    box-sizing: border-box;
}

.about_container {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: auto;
    justify-content: space-between;
    gap: 2rem;
    /* Space between elements */
}

.about_text {
    text-transform: uppercase;
    font-size: 1.3rem;
    background-color: #333333c5;
    border: 1px solid #eac258;
    color: #eac258;
    letter-spacing: 3px;
    padding: 1rem;
    text-align: center;
    max-width: 35%;
    box-sizing: border-box;
    margin: 0 auto;
    /* Center alignment */
}

.visionbau_text {
    font-family: var(--main_font);
    color: var(--gold);
    font-size: 3.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.about_container p {
    font-size: 1.7rem;
    font-family: var(--secnd_font);
    color: var(--font_color);
    line-height: 1.6;
    text-align: justify;
}

.about_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.about_buttons a {
    font-size: 1.5rem;
    font-family: var(--main_font);
    font-weight: bold;
    color: var(--gold);
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.about_buttons a:hover {
    background-color: var(--gold);
    color: #0b0b0b;
}

.image-overlay {
    position: relative;
    display: inline-block;
    /* Ensure the overlay wraps around the image size */
}

.image-overlay img {
    width: 43rem;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .hero h1 {
        font-size: 3rem !important;
    }

    .hero h3 {
        font-size: 1.4rem !important;
    }

    .hero a {
        font-size: 1.2rem !important;
    }

    .about {
        flex-direction: column;
        /* Stack content vertically */
        height: auto;
        /* Allow height to adjust */
        padding: 2rem;
    }

    .about_container {
        width: 90%;
        /* Take up most of the screen width */
        gap: 1.5rem;
    }

    .about_text {
        max-width: 100%;
        /* Expand to fit screen width */
    }

    .visionbau_text {
        font-size: 2.5rem;
        /* Reduce font size for smaller screens */
    }

    .about_container p {
        font-size: 1.5rem;
        /* Adjust font size for readability */
        text-align: left;
        /* Align text to the left for smaller screens */
    }

    .about_buttons a {
        font-size: 1.4rem;
        padding: 0.8rem 1.2rem;
        margin-bottom: 2rem;
    }

    .image-overlay img {
        width: 100%;
        /* Make the image responsive */
        border-radius: 8px;
    }
}

@media screen and (max-width: 480px) {
    .visionbau_text {
        font-size: 2rem;
        /* Further reduce font size */
        text-align: center;
    }

    .about_container p {
        font-size: 1.3rem;
        /* Reduce text size further */
    }

    .about_buttons a {
        font-size: 1.2rem;
        padding: 0.6rem 1rem;
    }

    .image-overlay img {
        width: 100%;
        /* Fully responsive image */
        border-radius: 5px;
    }
}


/* Services Section */
hr {
    width: 90vw;
    border-color: var(--gold);

}

.services {
    background-color: #0b0b0b;
    display: flex;
    flex-direction: column;
    height: 90vh;
    width: 100vw;
    justify-content: space-around;
    align-items: center;
}

.services_img {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 100%;
    align-items: center;
    justify-content: space-around;
}

.services_img h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    background-color: #333333c5;
    border: 1px solid #eac258;
    color: #eac258;
    letter-spacing: 3px;
    padding: 1rem;
    text-align: center;
    max-width: 40%;
    box-sizing: border-box;
    margin-top: 2rem;
}

.services_image {
    width: 30rem;
    border-radius: 2rem;
    border: 1px solid var(--gold);
    margin-top: 5rem;

}


.our_services {
    width: 100vw;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.first_row div,
.second_row div {
    height: 7rem;
    width: 30%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.first_row,
.second_row {
    display: flex;
    flex-direction: column;
    flex-direction: row;

    justify-content: space-around;
    align-content: space-around;
    align-items: center;

}


.our_services div img {
    width: auto;
    height: 7rem;
}

.row_div {
    width: 80% !important;
    height: 100%;
    display: flex;
    flex-direction: column !important;

}

.row_div h3 {
    font-family: var(--main_font);
    color: var(--gold);
    font-size: 2rem;
}

.row_div p {
    font-family: var(--secnd_font);
    font-size: 1.2rem;
}

.learn_more_btn {
    font-family: var(--main_font);
    font-size: 2.3rem;
    margin-top: 2rem;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .services {
        height: auto;
    }

    .services_image {
        display: flex;
        flex-direction: column;
        justify-content: center !important;
    }

    .services_img h2 {
        padding: 1rem 2rem !important;
    }

    .info_text {
        width: 100%;
    }


    .first_row,
    .second_row {
        display: grid;
        /* Switch to grid layout */
        grid-template-columns: 1fr;
        /* Single column for mobile */
        gap: 1.5rem;
        /* Add spacing between items */
        width: 90%;
        /* Center and limit the container width */
        margin: 0 auto;
        /* Center align */
    }

    .first_row div,
    .second_row div {
        width: 100%;
        height: fit-content !important;
        /* Full width for mobile */
        padding: 1rem;
        text-align: center !important;
        align-items: center;
    }

    .first_row div img,
    .second_row div img {
        width: 5rem;
        /* Smaller icons for mobile */
        height: 5rem;
        margin-bottom: 0.5rem;
    }

    .first_row div h3,
    .second_row div h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .first_row div p,
    .second_row div p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .row_div {
        height: fit-content !important;
    }
}


/* Projects Section */
#projects {
    text-align: center;
    padding: 50px 20px;
    background-color: #0b0b0b;
}

.projects h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    background-color: #333333c5;
    border: 1px solid #eac258;
    color: #eac258;
    letter-spacing: 3px;
    padding: 1rem;
    text-align: center;
    max-width: 20%;
    margin: 0 auto 2rem;
    /* Center align and spacing below */
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.services_img h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    background-color: #333333c5;
    border: 1px solid #eac258;
    color: #eac258;
    letter-spacing: 3px;
    padding: 1rem;
    text-align: center;
    max-width: 65%;
    margin: 0 auto 2rem;
    /* Center align and spacing below */
    box-sizing: border-box;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.info_text {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 2.3rem;
    font-family: var(--main_font);
    font-weight: 600;
    text-align: center;
}

/* Carousel Container */
.custom-carousel {
    position: relative;
    width: 80%;
    height: 500px;
    /* Fixed height */
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

/* Carousel Inner */
.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    /* Match parent height */
}

/* Carousel Item */
.carousel-item {
    min-width: 100%;
    height: 100%;
    /* Match parent height */
    position: relative;
}

.carousel-item img {
    width: 100%;
    /* Make image fill the width */
    height: 100%;
    /* Make image fill the height */
    object-fit: cover;
    /* Ensures the image covers the container */
    object-position: center;
    /* Ensures the center of the image stays in focus */
}

/* Carousel Caption */
.carousel-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 20px 35px;
    border-radius: 5px;
    text-align: center;
    width: calc(100% - 40px);
    /* Caption width adjusts with carousel width */
    max-width: 600px;
    box-sizing: border-box;
    /* Prevent overflow from padding */
    z-index: 5;
    font-family: var(--secnd_font);
}

.carousel-caption h5 {
    font-family: var(--main_font);
    font-size: 2rem;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-indicators span {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-indicators span.active {
    background: rgba(255, 255, 255, 1);
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--font_color);
    border: none;
    cursor: pointer;
    font-size: 24px;
    padding: 10px 15px;
    z-index: 10;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.check-all-projects-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 35px;
    font-size: 1.8rem;
    font-family: "Roboto Slab", serif;
    font-weight: bold;
    color: #0b0b0b;
    background-color: #eac258;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}


@media screen and (max-width: 768px) {
    .projects h2 {
        max-width: 80%;
    }
}



/* Statistics Section */
.stats-section {
    padding: 3rem 3rem;
    text-align: center;
    background-color: #0b0b0b;
    user-select: none;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 20px 15px;
    width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s;
}

.stat:hover {
    transform: scale(1.05);
}

.stat .number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold);
    display: inline-block;
}

.stat .percent {
    font-size: 1.2rem;
    color: var(--font_color);
}

.stat p {
    margin: 10px 0 0;
    font-size: 1.4rem;
    color: var(--font_color);
}

@media screen and (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .stat {
        width: 80%;
    }

    .stats-section h2 {
        font-size: 2rem;
    }

    .stat .number {
        font-size: 3.5rem;
    }

    .stat .percent {
        font-size: 1.2rem;
    }

    .stat p {
        font-size: 1.4rem;
    }
}

/* Faq Section */
.faq-section {
    padding: 3rem 2rem;
    background-color: #0b0b0b;
    color: #f2f2f2;
    font-family: "Roboto Slab", serif;
}

.faq-title {
    text-transform: uppercase;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    background-color: #333333c5;
    border: 1px solid #eac258;
    color: #eac258;
    letter-spacing: 3px;
    padding: 1rem;
    max-width: 35%;
    margin: 0 auto;
}

.faq-support {
    text-align: center;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
    font-weight: bold;
}

.faq-support a {
    color: #eac258;
    text-decoration: underline;
}

.faq-search {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.faq-search-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.faq-search input {
    width: 49%;
    padding: 1rem;
    font-size: 1.5rem;
    border: 1px solid #eac258;
    border-radius: 5px;
    background-color: #1c1c1c;
    color: #f2f2f2;
    transition: all 0.3s ease;
}

.faq-search input:focus {
    outline: none;
    border-color: #f2f2f2;
}

.faq-clear-button {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    background-color: #eac258;
    color: #0b0b0b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-clear-button:hover {
    background-color: #b89c2f;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eac258;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.5rem;
    color: #eac258;
    background-color: #0b0b0b;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-question.open::after {
    content: "-";
    transform: rotate(180deg);
}

.faq-question:hover {
    background-color: #333333c5;
}

.faq-answer {
    display: none;
    padding: 1rem;
    font-size: 1.2rem;
    color: #f2f2f2;
    animation: slideDown 0.3s ease-out;
}

.faq-answer.open {
    display: block;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 1.6rem;
        /* Slightly smaller font size */
        max-width: 60%;
        /* Adjust the width for better fit */
        padding: 0.8rem;
        /* Reduce padding */
        margin-bottom: 1.5rem;
        /* Adjust spacing below the title */
    }
}

/* Smooth opening animation */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Contact Section */
#contact {
    background-color: #0b0b0b;
    color: var(--font_color);
    padding: 50px 20px;
    font-family: var(--secnd_font);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#contact h2 {
    text-transform: uppercase;
    font-size: 1.3rem;
    background-color: #333333c5;
    border: 1px solid #eac258;
    color: #eac258;
    letter-spacing: 3px;
    padding: 1rem;
    text-align: center;
    max-width: 25%;
    box-sizing: border-box;
    margin-bottom: 2rem;

}

#contact h4 {
    font-family: var(--main_font);
    color: var(--font_color);
    font-size: 2rem;
    font-weight: 580;
    text-align: center;
    margin-bottom: 40px;

}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10rem;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.contact-wrapper form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid var(--gold);
}

.contact-wrapper label {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--font_color);
}

.contact-wrapper input,
.contact-wrapper textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    background-color: #2b2b2b;
    color: var(--font_color);
    font-family: var(--secnd_font);
}

.contact-wrapper textarea {
    resize: none;
}

.contact-wrapper button {
    background-color: var(--gold);
    color: #0b0b0b;
    font-size: 18px;
    font-family: var(--main_font);
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: bold;
}

.contact-wrapper button:hover {
    background-color: #b89c2f;
}

/* Media query for smaller screens */
@media screen and (max-width: 768px) {
    #contact h2 {
        font-size: 1.6rem;
        /* Slightly smaller font size */
        max-width: 60%;
        /* Adjust the width for better fit */
        padding: 0.8rem;
        /* Reduce padding */
        margin-bottom: 1.5rem;
        /* Adjust spacing below the title */
    }

    .contact-wrapper {
        gap: 2rem !important;
    }

    .business-card {
        width: 35rem !important;
    }
}



/* Map Container */

iframe {
    width: 100%;
    height: 15rem;
    border: 1px solid var(--gold) !important;
    border-radius: 5px;
}


.map_cont {
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 500px;
    justify-content: space-between;
    height: 58.5rem;

}

.map_cont img {
    border-radius: 2rem;
    border: 1px solid var(--gold);
}

.map_cont h3 {
    color: var(--font_color);
    font-size: 2rem;
}

.business-card {
    width: 50rem;
    height: auto;
}



.footer {
    max-width: 100%;
    width: 100%;
    background: #0b0b0b;
    border-radius: 6px;
}

.footer .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem !important;
    padding: 60px !important;
}

.footer-row .footer-col h4 {
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: 400;
}

.footer-col .links {
    margin-top: 20px;
}

.footer-col .links li {
    list-style: none;
    margin-bottom: 10px;
}

.footer-col .links li a {
    text-decoration: none;
    color: var(--font_color);
}

.footer-col .links li a:hover {
    color: var(--gold);
}

.footer-col p {
    margin: 20px 0;
    color: #bfbfbf;
    max-width: 300px;
}

.footer-col form {
    display: flex;
    gap: 5px;
}

.footer-col input {
    height: 40px;
    border-radius: 6px;
    background: none;
    width: 100%;
    outline: none;
    border: 1px solid var(--gold);
    caret-color: #fff;
    color: #fff;
    padding-left: 10px;
}

.footer-col input::placeholder {
    color: #ccc;
}

.footer-col form button {
    background: var(--gold);
    outline: none;
    border: none;
    padding: 10px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s ease;
}

.footer-col form button:hover {
    background: #cecccc;
}

.footer-col .icons {
    display: flex;
    margin-top: 30px;
    gap: 30px;
    cursor: pointer;
}

.footer-col .icons i {
    color: #afb6c7;
}

.footer-col .icons i:hover {
    color: #fff;
}

.footer_div {
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media (max-width: 768px) {
    .footer {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
    }

    .footer .footer-row {
        padding: 20px;
        gap: 3rem;
    }

    .footer-col form {
        display: block;
    }

    .footer-col form :where(input, button) {
        width: 100%;
    }

    .footer-col form button {
        margin: 10px 0 0 0;
    }
}



@keyframes rotateText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 30px;
    }

    .logo a {
        font-size: 2.5rem;
    }

    nav ul li {
        margin-left: 20px;
    }

    nav ul li a {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero h3 {
        font-size: 1.8rem;
    }

    .hero a {
        font-size: 1.4rem;
    }
}



.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #f2f2f2;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.cookie-banner p {
    margin: 0 0 1rem 0;
}

.cookie-banner a {
    color: #eac258;
    text-decoration: underline;
}

.cookie-banner .btn-accept,
.cookie-banner .btn-decline {
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    margin: 0 1rem;
    background-color: #eac258;
    color: #0b0b0b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-banner .btn-accept:hover,
.cookie-banner .btn-decline:hover {
    background-color: #b89c2f;
}





.tag-list {
    width: 100vw;  /* Full width like the rotating strip */
    height: 4rem;  /* Match previous strip height */
    font-family: var(--main_font); /* Match font */
    background-color: var(--gold); /* Match gold background */
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.inner {
    width: fit-content;
    display: flex;
    gap: 2rem; /* Match previous spacing */
    animation: loop 50s linear infinite; /* Match slower scrolling */
    white-space: nowrap;
}

.tag {
    display: flex;
    align-items: center;
    gap: 0 0.5rem;
    color: rgb(0, 0, 0); /* Match text color */
    font-size: 2rem; /* Match previous text size */
    font-weight: 900;
    user-select: none;
    background: none; /* Remove background color */
    padding: 0;
    box-shadow: none; /* Remove shadows */
}

.fade {
    display: none; /* No fade effect needed */
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
