/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}

/* Hero Section */
.hero-image {
    background-image: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial-card {
    background-color: rgba(203, 161, 53, 0.05);
    border-left: 4px solid #CBA135;
}

/* Navigation Links */
.nav-link:hover {
    color: #CBA135;
}

/* Buttons */
.btn-gold {
    background-color: #CBA135;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #b38d2e;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #CBA135;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #CBA135;
    color: white;
}

html {
  scroll-behavior: smooth;
}
