* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    width: 100%;
    padding: 20px 50px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(179, 176, 176, 0.1);
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;   
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: blue;
}

/* Update existing mobile menu styles */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 1001;
    color: #333;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('images/FB_Page_Cover_2.jpg ');  /* Replace with your image path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    flex-direction: row-reverse;
}

/* Add overlay to ensure text remains readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Adjust opacity as needed */
}

.hero-content {
    position: relative;
    z-index: 1; /* Ensures content stays above overlay */
    padding: 20px;
    
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #08349c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #0934ac;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.cta-button:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.highlight {
    color: blue;
    font-weight: 700;
}

/* Listings Section */
.listings {
    padding: 80px 50px;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.listing-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.listing-card:hover {
    transform: translateY(-5px);
}

.listing-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: all 0.3s ease;
        transform: translateY(-10px);
    }

    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0;
        animation: fadeIn 0.5s forwards;
    }

    .nav-links.active li {
        opacity: 1;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links li:nth-child(2) { animation-delay: 0.2s; }
    .nav-links li:nth-child(3) { animation-delay: 0.3s; }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .listing-card {
        margin: 0 10px;
    }
}

.footer {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 70px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr; /* Adjusted column widths */
    gap: 30px;
    padding: 0 20px;
    align-items: start; /* Align items to top */
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: #08349c;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p, 
.footer-section a {
    color: #030303;
    text-decoration: none;
    line-height: 1.8;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 0px;
    text-align: center;
    margin-right: 200px;
}

.social-links h3 {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: green;
    color: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #519e08;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
}

@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px 20px;
    }

    .footer-section {
        padding: 0 10px;
    }

    /* Social Links section in mobile */
    .footer-section:nth-child(3) {
        grid-column: 1 / -1;
        text-align: center;
    }

    .social-links {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        padding: 0;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

