
/* Hero Split Layout */
.hero-split {
    padding: 4rem 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-img-wrapper {
    position: relative;
    z-index: 1;
    transform: rotate(2deg);
    transition: transform 0.3s ease;
}

.hero-img-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.main-hero-img {
    width: 100%;
    max-width: 450px;
    border: 3px solid #333;
    border-radius: 255px 15px 225px 15px / 15px 225px 15px 255px;
    box-shadow: 15px 15px 0px rgba(0,0,0,0.1);
    background: white;
    display: block;
    margin: 0 auto;
}

.deco-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
    border: 2px solid #333;
}

/* Responsive Hero */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
        order: 2; /* Image first on mobile? Or text first? Let's keep text first usually, but for visual impact image might be better. Let's stick to text first for SEO/Context */
    }

    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-text h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-img-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
}
