/*
Required images for best appearance:
- Hero: Unsplash direct URL used in CSS
- Service cards: Unsplash direct URLs in HTML
*/
body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.text-gold {
    color: #FFD700;
}
.bg-gold {
    background-color: #FFD700;
}
.hero-section {
    background: url('/assets/images/banner.jpg') center/cover no-repeat;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}
.hero-overlay {
    background: rgba(220, 170, 30, 0.55);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.btn-gold {
    background: #FFD700;
    color: #222;
    border: none;
    font-weight: 600;
}
.btn-gold:hover {
    background: #e6c200;
    color: #111;
}
.section-title {
    color: #222;
    font-weight: 700;
    margin-bottom: 1rem;
}
.card-gold {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.card-gold .card-title {
    color: #FFD700;
    font-weight: 600;
}
.card-gold .card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    box-shadow: 0 4px 16px rgba(220,170,30,0.15);
} 