/* Complete Hero Section Override */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hero-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: center !important;
    min-height: auto !important;
    text-align: left !important;
    position: relative !important;
    z-index: 10 !important;
    max-width: 1200px !important;
    width: 100% !important;
    padding: 0 2rem !important;
}

.hero-text {
    z-index: 10 !important;
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.98) 0%, rgba(254, 254, 254, 0.95) 100%) !important;
    padding: 3rem !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    color: var(--ocean-deep) !important;
}

.hero-text h1 {
    color: var(--ocean-deep) !important;
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Playfair Display', serif !important;
}

.hero-text p {
    color: #4a5568 !important;
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
}

.hero-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 10 !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
}

.jaymie-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.jaymie-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    .hero-image {
        order: -1 !important;
    }
    
    .hero-text {
        padding: 2rem !important;
    }
    
    .hero-text h1 {
        font-size: 2rem !important;
    }
    
    .hero-text p {
        font-size: 1.1rem !important;
    }
    
    .jaymie-photo {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 2rem !important;
    }
    
    .jaymie-photo {
        max-width: 250px;
        border-radius: 15px;
    }
    
    .hero-text {
        padding: 1.5rem !important;
    }
    
    .hero-text h1 {
        font-size: 1.8rem !important;
    }
}
