@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

* {
    font-family: "Fira Code";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: #0a0a0a;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Floating animation for the banner */
@keyframes float {
    0%, 100% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 10% 10%;
    }
    50% {
        background-position: 20% 5%;
    }
    75% {
        background-position: 10% 15%;
    }
}

/* Site overlay should cover everything */
.site-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.2) 0%, rgba(136, 211, 206, 0.2) 100%);
    z-index: -1; /* Behind all content */
    opacity: 0;
    transition: opacity 1s ease;
}

/* Dark base layer behind overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/banner.png);
    z-index: -2; /* Behind overlay */
}

/* Mobile Menu Styles */
.hamburger {
    display: none; /* Hidden by default on desktop */
    padding: 15px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1000;
    position: absolute;
    right: 20px;
    top: 20px;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    width: 100%;
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Mobile Menu Panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(67, 2, 2, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 80px 20px 20px;
    box-sizing: border-box;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu-content a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
    color: #88d3ce;
}

/* Hamburger Animation */
.hamburger.active .hamburger-inner {
    background-color: transparent;
}

.hamburger.active .hamburger-inner::before {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-inner::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* About section should NOT have its own background */
.about-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    color: white;
    position: relative;
    /* Remove: background-color: #0a0a0a; */
}


body:hover .site-overlay {
    opacity: 1;
}

/* Remove the banner::after styles since we're using site-wide overlay now */



.about-content {
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1s;
}

.about-section h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
}

.about-section p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #ccc;
}




/* Navbar styling with glass morphism effect */
.nav {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
    transition: all 0.5s ease;
}

.nav.scrolled {
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
}

.company-name img {
    height: 90px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.company-name img:hover {
    transform: scale(1.05) rotate(-5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.4s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    transition: width 0.4s ease;
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

/* Portfolio Container Styles */
.portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: #fff;
    font-family: 'Fira Code', monospace;
    
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(110, 69, 226, 0.3);
}

.project-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(136, 211, 206, 0.3);
}

.project-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.project-description {
    font-size: 1.2rem;
    color: #ccc;
}

.project-wrapper {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Your original Luxury Stays styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
}

body {
    background-color: #ffffff;
    color: #222222;
    line-height: 1.6;
}

header {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 10px 40px;
    color: black;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1760px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #ff385c;
}

.logo i {
    margin-right: 10px;
    font-size: 28px;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 40px;
    padding: 5px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.search-option {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.2s ease;
}

.search-option:hover {
    background-color: #f7f7f7;
}

.search-option.active {
    background-color: #000000;
    color: white;
}

.filter-btn {
    display: flex;
    align-items: center;
    background: none;
    border: 1px solid #dddddd;
    border-radius: 20px;
    padding: 8px 16px;
    margin-left: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.filter-btn i {
    margin-right: 8px;
}

.user-actions {
    display: flex;
    align-items: center;
}

.host-btn {
    background: none;
    border: none;
    padding: 10px 16px;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
}

.host-btn:hover {
    background-color: #f7f7f7;
    border-radius: 20px;
}

.user-menu {
    display: flex;
    align-items: center;
    border: 1px solid #dddddd;
    border-radius: 30px;
    padding: 8px 10px;
    cursor: pointer;
}

.user-menu i:first-child {
    margin-right: 12px;
    color: #717171;
}

.user-menu i:last-child {
    color: #717171;
    font-size: 28px;
}

main {
    max-width: 1760px;
    margin: 30px auto;
    padding: 0 40px;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.property-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.property-card:hover {
    transform: scale(1.02);
}

.property-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.property-info {
    padding: 10px 2px;
}

.property-info h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

.property-price {
    font-weight: 600;
}

.property-type {
    color: #717171;
    font-size: 14px;
}

footer {
    background-color: #f7f7f7;
    padding: 40px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1760px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    text-decoration: none;
    color: #222222;
    font-size: 14px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1760px;
    margin: 30px auto 0;
    padding-top: 20px;
    border-top: 1px solid #dddddd;
    font-size: 14px;
    color: #717171;
}

@media (max-width: 1128px) {
    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 950px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-bar {
        margin: 15px 0;
        width: 100%;
        flex-wrap: wrap;
    }
    
    .user-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 600px) {
    header {
        padding: 10px 20px;
    }
    
    main {
        padding: 0 20px;
    }
    
    .search-option {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
    }
}

/* Project Details Section */
.project-details {
    background: rgba(30, 30, 30, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(136, 211, 206, 0.2);
}

.project-details h2 {
    color: #88d3ce;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(136, 211, 206, 0.3);
    padding-bottom: 0.5rem;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.details-section h3 {
    color: #6e45e2;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.details-section ul {
    list-style: none;
    padding-left: 1rem;
}

.details-section li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
    color: #ccc;
}

.details-section li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: #88d3ce;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tags span {
    background: rgba(110, 69, 226, 0.2);
    color: #88d3ce;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(136, 211, 206, 0.3);
}


/* Footer Styles */
.main-footer {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-left,
.footer-center,
.footer-right {
    padding: 0.5rem 1rem;
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.footer-center {
    font-size: 1.1rem;
    color: #88d3ce;
    font-weight: 500;
}

.footer-right {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-right a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #88d3ce;
    transition: width 0.3s ease;
}

.footer-right a:hover {
    color: #88d3ce;
}

.footer-right a:hover::after {
    width: 100%;
}

.footer-logo {
    color: #88d3ce;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-logo:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-logo:hover::after {
    width: 100%;
}
/* Mobile-First Responsive Adjustments */
@media (max-width: 768px) {
    /* Base Layout Adjustments */
    body {
        overflow-x: hidden;
    }

    /* Navigation */
    .nav {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .nav-links {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }

   
    .hamburger {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav {
        padding: 15px 20px;
    }
    .mobile-menu {
        display: block !important; /* Force show the mobile menu */
    }

    .question-buttons {
        flex-direction: column;
        align-items: center;
    }
    

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        width: 100%;
    }
    
    .footer-right {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    /* Extra Small Devices */
    .banner-content h1 {
        font-size: 2rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
    .details-content {
        grid-template-columns: 1fr;
    }

}
