/* General Styles */
:root {
    --primary-color: #C47D8F;
    --light-bg: #F9F5F0;
    --dark-color: #333;
    --text-muted: #999;
}

* {
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

body {
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 24px !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #a86577;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(196, 125, 143, 0.3);
}

/* Cards */
.card {
    transition: all 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 125, 143, 0.2) !important;
}

/* Form Controls */
.form-control,
.form-select {
    border-radius: 10px;
    border: 2px solid #E8D5D0;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(196, 125, 143, 0.25);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 400px !important;
    }

    .display-3 {
        font-size: 2.5rem !important;
    }

    .lead {
        font-size: 16px !important;
    }
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--primary-color);
}

.detail-row {
    display: grid;
    grid-template-columns: 130px 1fr;  /* label tetap, value fleksibel */
    gap: 6px 14px;
    align-items: start;
}

.detail-value {
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;    /* ← KRITIS: tanpa ini grid tidak bisa shrink */
}
/* Service Cards */
.service-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(196, 125, 143, 0.2);
}

/* Gallery */
.gallery-img {
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
}

.gallery-img img {
    transition: transform 0.3s ease;
}

.gallery-img:hover img {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Status Badge */
.badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Alert Box */
.alert {
    border-radius: 15px;
    border: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}