/*
Theme Name: SMP Clinics Directory
Description: A WordPress theme for the UK Scalp Micropigmentation Clinics Directory
Version: 1.0
Author: Cascade
*/

/* Basic resets and global styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.navbar-brand {
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-section h1, .hero-section p, .hero-section .btn {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stats-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    cursor: pointer;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: white;
    color: #667eea;
    cursor: pointer;
}

.featured-card .card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.dropdown-menu.show {
    display: block;
}

.hero-section .text-primary {
    color: #FFD700 !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}
