/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

strong {
    color : #f0a500
}

h2 {
    font-size: 5em;
}

section #intro {
    padding-bottom: 120px;
}

.section-content{
    max-width: 90%;
}
.top-left-image {
    position: absolute; /* Keep the image fixed in the viewport */
    top: 30px;
    left: 30px;
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    z-index: 1000; /* Ensure it stays on top of other content */
    -webkit-filter: drop-shadow(0px 2px 2px #272727);
    filter: drop-shadow(0px 2px 2px #272727);
    max-width: 500px;
    background : white;
    padding: 15px;
    border-radius: 15px;
}

.top-left-image-mobile {
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    z-index: 1000; /* Ensure it stays on top of other content */
    -webkit-filter: drop-shadow(0px 2px 2px #272727);
    filter: drop-shadow(0px 2px 2px #272727);
    max-width: 150px;
    background : white;
    padding: 15px;
    border-radius: 15px;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    z-index: 1000;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}
.full-screen {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}


#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#menu li {
    position: relative;
    margin: 10px 0;
    padding: 10px 20px;
    color: #fff;
    cursor: pointer;
}

/* Line before and after active menu item */
#menu li::before,
#menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    background-color: #f0a500;
    transition: width 0.3s ease;
    width: 0;
}

#menu li::before {
    left: 0;
}

#menu li::after {
    right: 0;
}

/* Expanded width on active menu item */
#menu li.active::before {
    width: 100%;
}

#menu li.active::after {
    width: 100%;
}

/* Optional: Styling for menu item hover */
#menu li:hover {
    color:#f0a500;
}

/* Header Styles */
.header-desktop{
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
header h1 {
    font-size: 2em;
    color: #fff;
    margin-bottom: 20px;
}
header nav ul {
    list-style: none;
    padding: 0;
}
header nav ul li {
    color: #fff;
    margin: 10px 0;
    cursor: pointer;
    transition: color 0.3s;
}
header nav ul li:hover,
header nav ul li.active {
    color: #f0a500;
}

/* Hide desktop header on mobile */
.header-desktop {
    display: flex;
}

.header-mobile {
    display: none;
}

/* Mobile view */
@media (max-width: 1200px) {
    h2 {
        font-size: 3em;
    }
    .card img{
        height: 150px !important;
    }
    .logo-desktop {
        display: none;
    }
    .logo-mobile img{
        max-width: 150px;
        display: inline-block;
        position: relative;
    }

    .header-desktop {
        display: none;
    }
    .header-mobile {
        padding: 20px 10px;
        background-color: rgb(0,0,0,0.8);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
        display: block;
    }

    .header-mobile .container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger {
        display: inline-flex;
    }
    /* Style the hamburger menu */
    .hamburger-menu {
        background: none;
        border: none;
        font-size: 2em;
        color: #fff;
        cursor: pointer;
        display: block;
    }

    /* Initially hide the mobile menu */
    #mobile-menu {
        display: none;
    }

    /* Show the menu when active */
    #mobile-menu.active {
        display: block;
    }

    /* Vertical menu */
    #menu ul {
        flex-direction: column;
    }
    #menu li {
        margin: 10px 0;
        padding: 10px 20px;
        color: #fff;
    }
}

@media (max-width: 996px) {
    h2 {
        font-size: 2em;
    }
    .logo-mobile img{
        max-width: 100px;
        display: inline-block;
        position: relative;
    }
    .card img{
        height: 100px !important;
    }
}

.divider{
    position: absolute;
    bottom:0; /* Adjust based on your needs */
    left: 0;
    width: 100%;
    height: 120px; /* Height of the triangle divider */
    clip-path: polygon(0 100%, 100% 100%, 50% 0); /* Creates the triangle effect */
    z-index: 999;
}
.divider-intro {
    background: #e1e1e1; /* Same as section background color */
}
.divider-brands {
    background: #333; /* Same as section background color */
}

/* Intro Section */
.intro {
    background: url('/images/home-bg.jpg') no-repeat center center/cover;
    color: #fff;
}


.intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.intro .container {
    position: relative;
    z-index: 2;
}
.intro h2 {
    margin-bottom: 20px;
}
.intro p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Brands Section */
.brands {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e1e1e1;
}

.brands h2 {
    margin-top: 0px;
    margin-bottom: 40px;
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin-top: 20px; /* Add space between the heading and the grid */
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    text-align: center;
    position: relative;
}

.card img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s;
    object-fit: cover;
}

.card-text {
    color: #fff;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 5px;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card:hover img {
    transform: scale(1.1);
}

.card h3 {
    margin: 0;
}

/* Offer Section */
.offer {
    background: #e9e9e9;
    padding: 40px 20px;
}
.offer h3 {
    font-size: 2em;
    margin-bottom: 20px;
}
.offer p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Contact Form */
.full-screen.contact-form {
    background-color: #333;
    padding: 20px;
    height: auto;
}
.full-screen.about {
    height: auto;
}
.full-screen.contact-form .container {
    margin-bottom: 50px;
}
.contact-form h3 {
    color: #fff;
    font-size: 2em;
    margin-bottom: 20px;
}
.form-group {
    padding: 5px;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #ccc;
}

select option{
    color: white
}
.form-group input,
.form-group select,
.form-group textarea  {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #f0a500;
    font-size: 16px;
    color: white;
    background-color: #222;
    min-height: 30px;
}

.form-group button {
    background-color: #f0a500;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}
.form-group button:hover {
    color: #f0a500;
    background-color: black;
}

/* Footer */
footer {
    background-color: #222;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    display: block;
    height: 50px;
    width: 100%;
}

.text-center{
    text-align: center;
}
