/* HERO */
.detail-hero h1 {
    font-size: 40px;

    margin-bottom: 10px;
}

.detail-hero {
    position: relative;

    padding: 150px 0 120px;

    background: url("/assets/img/cover1.jpeg") center/cover no-repeat;

    color: white;

    text-align: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);
}

.detail-hero .container {
    position: relative;

    z-index: 2;
}

.detail-hero h1 {
    font-size: 46px;

    margin-bottom: 10px;
}

.detail-hero p {
    opacity: 0.9;
}

/* CARD */

.detail-section {
    padding: 60px 0;
}

.detail-card {
    background: white;

    border-radius: 30px;

    padding: 50px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.detail-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

/* INFO */

.detail-info h2 {
    margin-bottom: 20px;
}

.social-icons {
    display: flex;

    gap: 10px;

    font-size: 20px;

    margin: 10px 0;
}

/* FORM */

.detail-form form {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.detail-form input,
.detail-form textarea {
    padding: 14px;

    border-radius: 12px;

    border: 1px solid #ddd;

    background: #f3f3f3;
}

.detail-form textarea {
    height: 120px;

    resize: none;
}

.detail-form button {
    background: #f5a544;

    border: none;

    padding: 14px;

    border-radius: 12px;

    font-weight: 600;

    cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }
}
