/* Navbar Styling */
.navbar {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    position: relative; /* Needed for absolute positioning of submenus */
}


.header-nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    position: relative; /* For submenu positioning */
    /*margin-left: 20px;*/
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: block;
    transition: background-color 0.3s ease;
}

.nav-list li a:hover {
    background-color: #555;
    border-radius: 4px;
}

/* Submenu Styling */
.submenu {
    list-style: none;
    background-color: #444;
    position: absolute;
    top: 100%; /* Position below the parent item */
    left: 0;
    min-width: 160px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.submenu li a {
    color: #fff;
    padding: 0.8rem 1rem;
    white-space: nowrap; /* Prevent text wrapping */
}

.submenu li a:hover {
    background-color: #666;
}

/* Desktop: Submenu on hover */
.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Toggle (Hamburger Icon) */
.menu-toggle {
    display: none; /* Hidden by default on desktop */
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

/* Caret down icon for submenus */
.has-submenu > a .fa-caret-down {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

/* Rotate caret on desktop hover for submenus */
.has-submenu:hover > a .fa-caret-down {
    transform: rotate(180deg);
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        padding: 1rem;
    }

    .menu-toggle {
        display: block; /* Show hamburger icon on mobile */
    }

        .nav-list {
        flex-direction: column;
        width: 100%;
        display: none
;
        text-align: center;
        margin-top: 1rem;
        position: absolute;
        top: 77px;
        background: #000;
        left: 0;
        right: 0;
    }
    .nav-list.active {
        display: flex; /* Show when active */
    }

    .nav-list li {
        margin: 0;
        border-bottom: 1px solid #444; /* Separator for mobile list items */
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list li a {
        padding: 1rem;
    }

    /* Submenu on mobile (toggle instead of hover) */
    .submenu {
        position: static; /* Position normally within the flow */
        width: 100%;
        background-color: #555;
        opacity: 1; /* Always visible if parent is active */
        visibility: visible;
        transform: translateY(0);
        transition: none; /* No transition for mobile toggle */
        display: none; /* Hidden by default, shown by JS */
        box-shadow: none;
        border-radius: 0;
    }

    .submenu.active {
        display: block; /* Show when toggled by JS */
    }

    .submenu li a {
        padding-left: 2rem; /* Indent submenu items */
        background-color: #555;
    }

    .submenu li a:hover {
        background-color: #777;
    }

    /* Rotate caret on mobile click for submenus */
    .has-submenu > a .fa-caret-down {
        transform: rotate(0deg); /* Reset for mobile */
    }
    .has-submenu.active > a .fa-caret-down {
        transform: rotate(180deg);
    }

    div#navigation-buttons {
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
}
}

a.loginbtn {
    background-color: #e5b320;
    color: #000;
    border-radius: 5px;
}

a.loginbtn:hover {
    background-color: #f0d88a;
}

.header-phone-info{display: flex; align-items: end; flex-direction:column; } 
.header-phone-icon svg {display: block; height: 1em 16px ; position: relative; width: 1em; fill:#e5b318 }

.header-phone-text{font-family: "Bebas Neue", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color:#fff;}













@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); /* Using Roboto as a general-purpose font similar to the image */

:root {
    --dark-grey: #222222;
    --light-grey: #f0f0f0;
    --text-color: #ffffff;
    --accent-color: #FFC000; /* Yellow from the button/logo */
    --hover-color: #e0ac00; /* Slightly darker yellow for hover */
    --link-color: #b0b0b0;
    --link-hover-color: #ffffff;
}




.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Newsletter Section */
.newsletter-section {
    background-color: #221e13; /* Slightly lighter than the footer for contrast */
    padding: 80px 0;
    text-align: left;
}

.newsletter-section .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.newsletter-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    letter-spacing: 1px;
    color: #64625a;
    position: relative;
    padding-bottom: 20px;
}
.newsletter-title::before {
    content: '...'; 
    color: var(--accent-color);
    font-size: 1.5em;
    vertical-align: middle;
    position: absolute;
    left: 0;
    bottom: 0;    
}

.newsletter-section h1 {
    font-size: 4.5em;
    margin-bottom: 15px;
    line-height: 1.2;
    max-width: 600px;color: var(--text-color);
}

.subscribe-text {
    font-size: 1em;
    margin-bottom: 30px;
    color: var(--link-color);
    max-width: 500px;
}

.subscribe-form {
    width: 100%;
    max-width: 550px;
    position: relative;
}

.subscribe-form input[type="email"] {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1em;
    color: #333;
    width: 100%;
}

.subscribe-form input[type="email"]::placeholder {
    color: #999;
}

.subscribe-form button {
    background-color:#e5b318;
    color: #222; 
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap; 
    width: 100%;
    margin-top: 10px;
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: ease-out;
        transition: all .3s;
}

.subscribe-form button:hover {
    background-color: var(--hover-color);
    transform: translateY(-8px);
}



/* Footer Section */
.footer {
    background-color: #221e13;
    font-size: 0.95em;
    position: relative;
    border-style: solid;
    border-width: 1px 0px 0px 0px;
    border-color: #ffffff33;
    padding: 64px 0px 64px 0px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* Space between columns */
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    flex: 1;
    min-width: 200px; /* Minimum width for columns before wrapping */
}

.footer-column h3 {
    color: var(--text-color);
    font-size: 1.2em;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-column ul li a:hover,
.footer-column ul li a.active {
    color: var(--link-hover-color);
}

.footer-column ul li a i {
    margin-right: 8px; /* Space for icons */
}

.about-us .footer-logo {
    max-width: 150px; /* Adjust logo size as needed */
    margin-bottom: 20px;
}

.about-us p {
    line-height: 1.8;
    color: var(--text-color);
}

.contact-us p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-us p i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 1.1em;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
    text-align: center;
    color: var(--link-color);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px;
}

.social-icons a {
    color: var(--link-color);
    font-size: 1.2em;
    margin-left: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .newsletter-section h1 {
        font-size: 2.2em;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        min-width: unset;
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 50px 0;
    }

    .newsletter-section h1 {
        font-size: 1.8em;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-form input[type="email"] {
        margin-bottom: 10px;
    }

    .subscribe-form button {
        width: 100%;
        padding: 12px 20px;
    }

    .footer-bottom .container {
        flex-direction: column;
    }

    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        margin: 0 10px; /* Adjust spacing for mobile */
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
        bottom: 20px;
        right: 20px;
    }
}