/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform 0.3s ease-out;
}

.hero:hover .hero-background {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 3, 122, 0.95), rgba(103, 46, 217, 0.85));
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
}

.hero-main {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.property-types {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.property-tag {
    padding: 0.2rem 0.7rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.property-tag:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    background: transparent;
    transform: none;
}

.cta-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.cta-btn {
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-primary {
    background: white;
    color: var(--voi-light);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Featured Section */
.featured-section {
    position: absolute;
    bottom: 2rem;
    left: 10%;
    width: 80%;
    background: rgba(44, 3, 122, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
}

.featured-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 1.5rem;
}

.featured-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    justify-content: flex-start;
}

.featured-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.featured-logos a:hover {
    transform: translateY(-2px);
}

.featured-logos img {
    height: 20px;
    width: auto;
    min-width: 80px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.featured-logos img:hover {
    opacity: 1;
}

.featured-logos img[alt="Decrypt"],
.featured-logos img[alt="Blockworks"],
.featured-logos img[alt="Bitcoin.com News"],
.featured-logos img[alt="CoinDesk"],
.featured-logos img[alt="Crypto.news"] {
    height: 24px;
    min-width: 120px;
    max-width: 140px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content {
        margin-left: 5%;
    }

    .featured-section {
        left: 5%;
        width: 90%;
    }

    .featured-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .featured-section {
        bottom: 3rem;
    }

    .featured-logos {
        gap: 1.25rem 2rem;
        justify-content: center;
    }

    .featured-logos img {
        height: 18px;
        min-width: 70px;
        max-width: 110px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .property-types {
        justify-content: center;
    }

    .property-tag {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-btn {
        text-align: center;
    }

    .hero-main {
        padding-top: 80px;
        margin-bottom: 2rem;
    }

    .cta-container {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .cta-btn {
        text-align: center;
    }

    .hero-main {
        padding-top: 5rem;
    }

    .featured-section {
        bottom: 2rem;
        width: 100%;
        left: 0;
        padding: 1.25rem;
        border-radius: 0;
    }

    .featured-logos {
        gap: 1.25rem;
    }

    .featured-logos img {
        height: 16px;
        min-width: 60px;
        max-width: 100px;
    }

    .featured-logos img[alt="Decrypt"],
    .featured-logos img[alt="Blockworks"],
    .featured-logos img[alt="Bitcoin.com News"],
    .featured-logos img[alt="CoinDesk"],
    .featured-logos img[alt="Crypto.news"] {
        height: 20px;
        min-width: 100px;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .property-tag {
        padding: 0.15rem 0.6rem;
        font-size: 0.7rem;
    }

    .featured-section {
        padding: 1rem;
        bottom: 1.5rem;
    }

    .featured-logos {
        gap: 1rem;
    }

    .featured-label {
        margin-bottom: 1rem;
        text-align: center;
    }

    .featured-logos img {
        height: 14px;
        min-width: 50px;
        max-width: 80px;
    }

    .featured-logos img[alt="Decrypt"],
    .featured-logos img[alt="Blockworks"],
    .featured-logos img[alt="Bitcoin.com News"],
    .featured-logos img[alt="CoinDesk"],
    .featured-logos img[alt="Crypto.news"] {
        height: 16px;
        min-width: 80px;
        max-width: 100px;
    }
}