@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;
    font-family: var(--secnd_font);
    overflow-x: hidden;
}

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 */

hr {
    width: 90vw;
    border-color: var(--gold);
    justify-self: center;
    margin-top: 3rem;

}

/* Where Section */
.location-section {
    background-color: #0b0b0b;
    color: var(--font_color);
    padding: 4rem 2rem;
    text-align: center;
    font-family: var(--secnd_font);
    user-select: none;
    margin-top: 10rem;
}

.location-section h2 {
    font-size: 5rem;
    margin-bottom: 2rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    font-family: var(--main_font);
}

.location-section p {
    font-size: 1.6rem;
    line-height: 1.8;
    max-width: 60%;
    margin: 0 auto 3rem auto;
    color: var(--font_color);
}

.location-section .locations {
    margin-top: 2rem;
}

.location-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.location-section ul li {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background-color 0.3s ease;

}

.location-section ul li:hover {
    background-color: var(--gold);
    color: #0b0b0b;
    transform: scale(1.02);
}





/* Offer Section */
.offer-details {
    user-select: none;
    padding: 50px;
    background-color: #0b0b0b;
    color: #f2f2f2;
    font-family: "Roboto Slab", serif;
}

.offer-header h2 {
    font-size: 5rem;
    color: var(--gold);
    font-family: var(--main_font);
    text-align: center;
    margin-bottom: 20px;
}

.offer-header p {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px;
}

.offer-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    max-width: 400px;
    height: 88rem;
    margin: auto;
}

.offer-card img {
    width: 100%;
    height: 250px;
    /* Ensures consistent image size */
    object-fit: cover;
    /* Ensures image fits within the card */
    border-radius: 10px;
    margin-bottom: 15px;
}

.offer-card h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 1.4rem;
    line-height: 1.8;
}

.offer-card ul {
    margin: 15px 0;
    text-align: left;
    padding-left: 20px;
}

.offer-card ul li {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
        /* Stack cards on smaller screens */
    }

    .offer-card {
        max-width: 90%;
    }
}

/* Combined Get Started and Why Choose Us Section */
.get-started-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 100%;
    margin: 2rem auto;
}

/* Section Content */
.get-started-section .content {
    max-width: 800px;
    text-align: center;
}

/* Section Headers */
.get-started-section h2 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-family: var(--main_font);
}

.content p {
    font-size: 1.6rem;
}

.get-started-section h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-family: var(--main_font);
}

/* Collapsible Container */
.collapsible-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Collapsible Item */
.collapsible-item {
    flex: 1 1 calc(33.33% - 1rem);
    /* Three items per row */
    max-width: 30%;
    text-align: left;
}

.collapsible-header {
    background: var(--gold);
    color: #0b0b0b;
    padding: 10px 15px;
    font-size: 1.4rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease;
}

.collapsible-header:hover {
    background: #b89c2f;
}

/* Collapsible Content */
.collapsible-content {
    display: none;
    background: #f9f9f9;
    color: #333;
    padding: 10px 15px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    margin-top: 5px;
    font-size: 1.4rem;
    line-height: 1.6;
}

/* Expanded Content */
.collapsible-content.show {
    display: block;
}

/* Contact Us Button */
.cta-button {
    padding: 10px 40px;
    font-size: 1.8rem;
    color: #0b0b0b;
    background: var(--gold);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    cursor: pointer;
    margin-top: 2rem;
}

.cta-button:hover {
    background: #b89c2f;
    transform: scale(1.1);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .collapsible-container {
        flex-direction: column;
    }

    .collapsible-item {
        flex: 1 1 100%;
        /* Full width for smaller screens */
        max-width: 100%;
    }
}

/* Footer Section */
.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%);
    }
}


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

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

    .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;
    }
}


@media (max-width: 768px) {

    .location-section p {
        max-width: 80%;
    }

    .offer-card {
        max-width: 100%;
        height: auto;
    }
}