/* css/hero.css */
.hero {
    display: flex;
    height: 80vh;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    gap: 30px;
    position: relative;
}

.hero-content {
    position: relative;
    color: #fff;
    max-width: 50%;
}

.text-content h1 {
    font-size: 4rem;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #000000;
}

.text-content h2 {
    font-size: 1.8rem;
    margin: 10px 0;
    font-weight: 400;
    color: #808080;
}

.text-content p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-top: 20px;
    line-height: 1.6;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}