/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
}

/* Navbar */
.navbar {
    background-color: white;
    color: #ee6f57;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ee6f57;
}
.logo img{
    margin-left:30px;
    margin-right:15px;
}

.logo a {
    color: #ee6f57;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ee6f57;
    text-decoration: none;
    padding: 10px;
    font-weight: 500;
}

.nav-links a:hover {
    background-color: rgba(238, 111, 87, 0.1);
    border-radius: 5px;
}

/* Mobile Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 10px;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #ee6f57;
    border-radius: 5px;
}

/* Show Mobile Menu */
.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    border: 1px solid #ee6f57;
    border-radius: 5px;
    padding: 10px;
}

.nav-links.active a {
    display: block;
    padding: 10px 15px;
}

/* Hero Section */
.hero {
    background-color: #fafafa;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #343a40;
    font-weight: 600;
}

.hero .highlight {
    color: #ee6f57;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: 400px;
    margin: 20px auto;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 30px 0 0 30px;
    color: #888;
}

.search-bar button {
    background: #121820;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
}

.search-bar button:hover {
    background: #ee6f57;
}

/* Hero Image */
.heroImage {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    max-width: 100%;
    overflow: hidden;
}

.heroImage img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background-color: #fafafa;
    color: #000000;
    padding: 40px 20px;
    text-align: center;
}


/* Footer Sections */
.footer-sections {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #ee6f57;
}

.footer-mid {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-mid h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-mid a {
    display: block;
    margin-bottom: 8px;
    color: #ee6f57;
    text-decoration: none;
    font-size: 14px;
}

.footer-mid a:hover {
    text-decoration: underline;
    color: #000000;
}

/* Footer Help Section */
.footer-left {
    text-align: center;
    padding-bottom: 20px;
}

.footer-left h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.footer-left button {
    background: #ee6f57;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.footer-left button:hover {
    background: #000000;
}

/* Newsletter */
.newsletter input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ee6f57;
    border-radius: 5px;
    color: #ee6f57;
}

.newsletter button {
    background: #ee6f57;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter button:hover {
    background: #d65b4a;
}

/* Footer Bottom */
.footer-bottom  p{
    margin-top: 20px;
    font-size: 14px;
    float:left;
    color: #000000;
}

.footer-bottomright a {
    
    color: rgb(6, 6, 6);
    border: none;
    text-decoration: none;
    padding: 10px 15px;
    float:right;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.footer-bottomright a:hover {
    color: #d65b4a;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* Navbar */
    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
    }

    .hamburger-menu {
        display: flex;
    }

    /* Hero Section */
    .search-bar {
        width: 90%;
    }

    .heroImage img {
        max-height: 300px;
    }

    /* Footer */
    .footer-sections {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        text-align: center;
    }

    .newsletter input {
        width: 100%;
    }
}
