/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --primary-color: #b8860b;
    /* Dark Golden Rod */
    --secondary-color: #2c3e50;
    /* Dark Blue */
    --light-bg: #f8f9fa;
    --text-color: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    margin-left: 20px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section - Carousel */
.hero-slider .carousel-item {
    height: 85vh;
    background-color: #000;
}

.hero-slider .carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    animation: kenburns 20s infinite alternate;
}

.carousel-caption {
    bottom: 35%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInDown 1s ease-out;
}

.carousel-caption p {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-out;
}

/* Animations */
@keyframes kenburns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.15);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #d4a017;
    border-color: #d4a017;
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Features */
.feature-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonial-card {
    background: #f1f1f1;
    padding: 30px;
    border-radius: 10px;
    font-style: italic;
    text-align: center;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: #fff;
    padding: 50px 0 20px;
}

footer h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

footer a {
    color: #ddd;
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color);
}