/* Enhanced Hero Section Styles */

/* Fullscreen Hero */
.fullscreen-hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
    background: #ffffff;
}

.fullscreen-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0;
    max-width: 1400px;
    width: 100%;
}

.hero-container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    padding-left: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: #f5f5f5;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    padding: 2rem;
}

.hero-image img {
    max-width: 80%;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    transform-origin: center center;
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 1;
}

/* Floating elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    opacity: 0.2;
    z-index: 1;
}

.coin-1 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    top: 20%;
    left: 15%;
    animation: float 8s ease-in-out infinite;
}

.coin-2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    bottom: 25%;
    right: 20%;
    animation: float 7s ease-in-out infinite 1s;
}

.chart {
    width: 80px;
    height: 50px;
    background-color: var(--primary-color);
    clip-path: polygon(0 100%, 20% 60%, 40% 80%, 60% 40%, 80% 60%, 100% 20%, 100% 100%);
    bottom: 15%;
    left: 25%;
    animation: float 9s ease-in-out infinite 0.5s;
}

.dollar {
    width: 30px;
    height: 50px;
    background-color: var(--primary-color);
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    top: 30%;
    right: 15%;
    animation: float 6s ease-in-out infinite 1.5s;
}

/* Hero Typography */
.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.hero-title .accent-text {
    color: var(--primary-color);
    display: block;
    font-weight: 600;
    font-size: 0.9em;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--dark-gray);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.arrow-scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-scroll-down span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--primary-color);
    border-right: 2px solid var(--primary-color);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollDown 1.5s infinite;
}

.arrow-scroll-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-scroll-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Scroll-triggered visibility */
.scroll-hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .fullscreen-hero .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .fullscreen-hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}