body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: #faf9f6; /* Off-white, organic feel */
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    background-color: #e9ecef;
    padding: 120px 0;
    text-align: center;
    /* Subtly fading out the background logo */
    background: linear-gradient(rgba(250, 249, 246, 0.85), rgba(250, 249, 246, 0.85)), url('logo.jpg') no-repeat center center;
    background-size: cover;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    background-color: #fff;
    border-radius: 12px;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2.5rem 1.5rem;
}

.icon-box {
    font-size: 2.5rem;
    color: #bfa181; /* Earthy gold/tan */
    margin-bottom: 1.5rem;
}

.footer {
    background-color: #2c3e50;
    color: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.logo-img {
    max-height: 45px;
    margin-right: 12px;
    border-radius: 5px; 
}

.btn-custom {
    background-color: #bfa181;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-custom:hover {
    background-color: #a68a6d;
    color: white;
    transform: scale(1.05);
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.bg-light-alt {
    background-color: #fff;
}

/* Extracted inline styles */
.about-img {
    max-width: 400px; 
    object-fit: cover;
}

.section-heading {
    color: #2c3e50;
}

.section-divider {
    width: 60px; 
    height: 3px; 
    background-color: #bfa181; 
    margin: 15px auto;
}

.custom-orders-section {
    background-color: #faf9f6;
}

.custom-orders-btn {
    max-width: 300px;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
}

.footer-tagline {
    color: #bfa181;
}

.footer-copyright {
    font-size: 0.9rem; 
    opacity: 0.8;
}

/* Responsive typography and spacing for Tablet and Mobile */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .about-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-padding {
        padding: 50px 0;
    }
    .card-body {
        padding: 2rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .about-text {
        font-size: 1rem;
    }
    .btn-custom {
        padding: 10px 25px;
        font-size: 1rem;
    }
}