/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('img-background.png') center center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Header Styles */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 64;
    height: 32px;
    opacity: 1;
    z-index: 1000;
    position: relative;
}

/* Placeholder styles */
.logo-placeholder {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(245, 213, 71, 0.2);
    border-radius: 8px;
    border: 2px solid #F5D547;
}

.logo-text {
    color: white;
    font-size: 24px;
    font-weight: 600;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #F5D547;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn-signin {
    background: transparent;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-signup {
    background: #F5D547;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: #E6C441;
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

/* Hero Text */
.hero-text {
    z-index: 10;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.hero-title-accent {
    color: #F5D547;
    font-style: italic;
    font-family: 'Gloock', sans-serif;
    font-weight: 100;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 
                 0 0 10px rgba(245, 213, 71, 0.3),
                 0 0 20px rgba(245, 213, 71, 0.2);
    filter: brightness(1.1);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-explore {
    background: #F5D547;
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(245, 213, 71, 0.3);
}

.btn-explore:hover {
    background: #E6C441;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 213, 71, 0.4);
}

/* Hero Image Area */
.hero-image {
    position: relative;
    height: 500px;
    /* The house image is part of the background, so this area helps with layout */
}

/* Social Proof */
.social-proof {
    position: absolute;
    bottom: -80px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
}

.user-avatars {
    display: flex;
    gap: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    opacity: 1;
    z-index: 10;
    position: relative;
}

.avatar-placeholder {
    background: linear-gradient(135deg, #F5D547, #E6C441);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}

.avatar:first-child {
    margin-left: 0;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    margin: 0 10px;
}

.separator-icon {
    width: 16px;
    height: 16px;
    margin: 0 2px;
    filter: invert(1) opacity(0.8);
    z-index: 10;
    position: relative;
}

.social-proof-text {
    display: flex;
    align-items: center;
}

.trust-text {
    color: white;
    font-size: 14px;
    font-weight: 400;
}

.highlight {
    color: #F5D547;
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.scroll-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    filter: invert(1);
    opacity: 1;
    z-index: 100;
    position: relative;
}

.arrow-placeholder {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .social-proof {
        position: static;
        margin-top: 40px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header {
        width: 95%;
        top: 10px;
    }
    
    .nav-container {
        padding: 10px 15px;
    }
    
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 20px;
        order: 2;
    }
    
    .auth-buttons {
        order: 3;
        gap: 10px;
    }
    
    .logo {
        order: 1;
    }
    
    .hero {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
        br {
            display: none;
        }
    }
    
    .main-content {
        padding-top: 200px;
    }
    
    .social-proof {
        position: static;
        margin-top: 30px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .user-avatars {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .header {
        width: 98%;
        top: 5px;
    }
    
    .nav-container {
        padding: 8px 12px;
        border-radius: 25px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 5px 10px;
    }
    
    .btn-signin, .btn-signup {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .hero {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .hero-title-accent {
        font-size: 32px;
        display: block;
        margin: 5px 0;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 25px;
    }
    
    .btn-explore {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 200px;
    }
    
    .main-content {
        padding-top: 180px;
    }
    
    .social-proof {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
        padding: 8px 12px;
    }
    
    .user-avatars {
        justify-content: center;
        margin-bottom: 5px;
    }
    
    .avatar {
        width: 35px;
        height: 35px;
    }
    
    .trust-text {
        font-size: 12px;
        text-align: center;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-text {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Extra small devices */
@media (max-width: 320px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-title-accent {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .nav-links {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .btn-signin, .btn-signup {
        padding: 6px 12px;
        font-size: 13px;
    }
}
