/* Global Styles */
:root {
    --primary-color: #2E7D32; /* Forest Green from card */
    --accent-color: #D4AF37; /* Gold/Orange-ish from card/logo */
    --text-color: #333333;
    --light-bg: #f8f9fa;
}

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

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Custom Color Utilities */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.btn-accent {
    background-color: var(--accent-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #bfa13f; /* Slightly darker gold */
    color: white;
    transform: translateY(-2px);
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 600;
    margin-right: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(46, 125, 50, 0.8), rgba(46, 125, 50, 0.8)), url('https://placehold.co/1920x1080?text=Clinique+Background'); /* Placeholder BG */
    background-size: cover;
    background-position: center;
    height: 80vh; /* Full viewport height on mobile/desktop adjustment */
    min-height: 500px;
}

/* Services Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    background: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.icon-box i {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Contact Section */
iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
}
