/*
Theme Name: Consultation Theme
Description: A premium, eye-pleasing theme built specifically for consultation businesses, integrated with Amelia Booking.
Author: Antigravity
Version: 1.0.0
Text Domain: consultation-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Eye-pleasing soft light palette */
    --bg-color: #F8FAFC; /* Very soft slate */
    --surface-color: #FFFFFF;
    --primary-color: #0D9488; /* Calming Teal */
    --primary-hover: #0F766E;
    --text-main: #1E293B; /* Dark slate instead of harsh black */
    --text-muted: #64748B;
    --border-color: #E2E8F0;
    
    /* Layout */
    --container-width: 1200px;
    
    /* Aesthetics */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 5rem 0;
}

/* Header (Glassmorphism) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding .site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--text-main);
    font-weight: 500;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #F0FDF4 0%, #E0F2FE 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs for hero */
.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(to right, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
    z-index: 0;
    filter: blur(60px);
}

.hero-section::before {
    top: -200px;
    left: -200px;
}

.hero-section::after {
    bottom: -200px;
    right: -200px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Booking Section */
.booking-section {
    padding: 4rem 0;
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
}

.booking-container {
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    max-width: 1000px;
    margin: -8rem auto 0; /* Pulls it up over the hero section */
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: var(--text-muted);
}

/* Typography utilities */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-main);
}

/* Footer */
.site-footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
}

/* Content Area */
.site-content {
    min-height: 60vh;
}

/* Page specific */
.page-header {
    background: var(--surface-color);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
}

.page-content {
    padding: 4rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .booking-container {
        margin-top: -4rem;
        padding: 1.5rem;
    }
    .header-inner {
        flex-direction: column;
        gap: 1rem;
    }
    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}
