:root {
    --primary-color: #3E2723;
    --secondary-color: #C5A563;
    --background-color: #F5F5DC;
    --text-color: #6C757D;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.book-now-btn {
    background-color: var(--secondary-color);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(62, 39, 35, 0.7), rgba(62, 39, 35, 0.7)),
                url('../img/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    color: white;
    margin-top: -76px;
}

.hero-content {
    padding-top: 76px;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-box {
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #b18e4f;
    border-color: #b18e4f;
}

.discount-badge {
    margin-top: 1rem;
    padding: 0.5rem;
    border: 2px solid var(--secondary-color);
    display: inline-block;
    border-radius: 4px;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
}

.mission-image {
    height: 400px;
    background: url('../img/mission-bg.jpg') center/cover;
    border-radius: 8px;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: white;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s;
    background-color: var(--background-color);
    margin-bottom: 2rem;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .mdi {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* USP Section */
.usp {
    padding: 5rem 0;
}

.usp-card {
    text-align: center;
    padding: 2rem;
}

.usp-card .mdi {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: white;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info .mdi {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.social-links {
    margin-top: 2rem;
}

.social-link {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--secondary-color);
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 0.8rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    margin-left: 1.5rem;
}

.footer-link:hover {
    color: #b18e4f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .mission-image {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}
