/* ============================================================
   Little Big Leaguers Photography - Style Sheet
   Clean, bright design letting photography be the star
   ============================================================ */

/* ----------------------------------------------------------
   CSS Variables
   ---------------------------------------------------------- */
:root {
    --color-primary: #2563EB;
    --color-primary-dark: #1D4ED8;
    --color-primary-light: #3B82F6;
    --color-primary-50: #EFF6FF;
    --color-primary-100: #DBEAFE;
    --color-secondary: #10B981;
    --color-secondary-dark: #059669;
    --color-secondary-light: #34D399;
    --color-accent: #1E293B;
    --color-accent-light: #334155;
    --color-bg: #F8FAFC;
    --color-white: #FFFFFF;
    --color-text: #334155;
    --color-text-light: #64748B;
    --color-text-muted: #94A3B8;
    --color-border: #E2E8F0;
    --color-border-light: #F1F5F9;
    --color-overlay: rgba(30, 41, 59, 0.6);
    --color-overlay-dark: rgba(30, 41, 59, 0.75);
    --color-shadow: rgba(0, 0, 0, 0.08);
    --color-shadow-lg: rgba(0, 0, 0, 0.12);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --header-height: 80px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-pill: 50px;
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --shadow-sm: 0 1px 3px var(--color-shadow);
    --shadow-md: 0 4px 12px var(--color-shadow);
    --shadow-lg: 0 8px 30px var(--color-shadow-lg);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ----------------------------------------------------------
   Reset & Base
   ---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.75rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.375rem; }
h5 { font-size: 1.125rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1rem;
    color: var(--color-text);
}

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

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

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

/* ----------------------------------------------------------
   Section Utilities
   ---------------------------------------------------------- */
.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-lg {
    padding: 7rem 0;
}

.section-bg {
    background-color: var(--color-white);
}

.section-bg-light {
    background-color: var(--color-bg);
}

.section-bg-dark {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.section-bg-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.section-header .lead {
    color: var(--color-text-light);
    font-size: 1.125rem;
    max-width: 640px;
    margin: 1rem auto 0;
}

/* ----------------------------------------------------------
   Buttons
   ---------------------------------------------------------- */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--color-secondary-dark);
    border-color: var(--color-secondary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.625rem 1.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-outline-light {
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.btn-outline-light:hover {
    transform: translateY(-1px);
}

.btn-lg {
    padding: 0.875rem 2.25rem;
    font-size: 1.05rem;
    border-radius: var(--border-radius-lg);
}

/* ----------------------------------------------------------
   Site Header & Navigation
   ---------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

/* Transparent header variant for hero pages */
.site-header.header-transparent {
    background: transparent;
    border-bottom-color: transparent;
}

.site-header.header-transparent .site-logo,
.site-header.header-transparent .nav-link {
    color: var(--color-white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.site-header.header-transparent .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.site-header.header-transparent.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.site-header.header-transparent.scrolled .site-logo,
.site-header.header-transparent.scrolled .nav-link {
    color: var(--color-accent);
    text-shadow: none;
}

.site-header.header-transparent.scrolled .navbar-toggler-icon {
    filter: none;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    letter-spacing: -0.02em;
}

.site-logo:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.site-logo i {
    font-size: 1.35rem;
    color: var(--color-primary);
}

.site-logo strong {
    color: var(--color-primary);
}

.navbar {
    height: var(--header-height);
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-accent);
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}

/* Book a Session CTA button in nav */
.btn-book {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-radius: var(--border-radius-pill) !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem;
    font-weight: 600 !important;
    text-shadow: none !important;
    border: 2px solid var(--color-primary);
    transition: var(--transition);
}

.btn-book::after {
    display: none;
}

.btn-book:hover,
.btn-book.active {
    background-color: var(--color-primary-dark) !important;
    border-color: var(--color-primary-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.35);
}

/* Transparent header CTA override */
.site-header.header-transparent .btn-book {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border-color: var(--color-primary);
}

/* ----------------------------------------------------------
   Hero Sections
   ---------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(30, 41, 59, 0.35) 0%,
        rgba(30, 41, 59, 0.55) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .btn {
    font-size: 1.1rem;
    padding: 0.875rem 2.5rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content .btn-primary {
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.hero-content .btn-primary:hover {
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
    transform: translateY(-2px);
}

/* Hero trust badge */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--border-radius-pill);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-shadow: none;
}

.hero-trust-badge i {
    color: var(--color-secondary-light);
    font-size: 1rem;
}

/* Smaller hero for internal pages */
.hero-sm {
    min-height: 45vh;
}

.hero-sm .hero-content h1 {
    font-size: 2.75rem;
}

/* Darker overlay for lighter background images */
.hero-dark::before {
    background: linear-gradient(
        to bottom,
        rgba(30, 41, 59, 0.55) 0%,
        rgba(30, 41, 59, 0.7) 100%
    );
}

/* ----------------------------------------------------------
   Page Header (non-hero pages)
   ---------------------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    padding: 8rem 0 3rem;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 0;
}

.page-header .breadcrumb {
    justify-content: center;
    margin-top: 1rem;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.page-header .breadcrumb-item a:hover {
    color: var(--color-white);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
}

/* ----------------------------------------------------------
   Main Content
   ---------------------------------------------------------- */
.main-content {
    padding-top: var(--header-height);
    min-height: 50vh;
}

/* Remove top padding when hero is present */
.hero + .main-content,
.page-header + .main-content {
    padding-top: 0;
}

/* ----------------------------------------------------------
   Value Props Strip
   ---------------------------------------------------------- */
.value-props-section {
    padding: 3rem 0 0;
}

.value-props-section .highlight-card {
    padding: 1.5rem 1rem;
}

.value-props-section .highlight-card h4 {
    font-size: 1rem;
}

/* ----------------------------------------------------------
   Testimonials Section
   ---------------------------------------------------------- */
.testimonials-section {
    background-color: var(--color-bg);
}

/* ----------------------------------------------------------
   Gallery Grid
   ---------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
    padding: 0;
}

.gallery-grid.masonry {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(30, 41, 59, 0.85) 0%,
        rgba(30, 41, 59, 0.2) 40%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.gallery-overlay .gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay .gallery-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Fixed-height gallery grid variant */
.gallery-grid-fixed {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.gallery-grid-fixed .gallery-item {
    height: 280px;
}

/* ----------------------------------------------------------
   Gallery Filter Pills
   ---------------------------------------------------------- */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
}

.filter-pill {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    transition: var(--transition);
    text-transform: capitalize;
}

.filter-pill:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: var(--color-primary-50);
}

.filter-pill.active {
    color: var(--color-white);
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

/* ----------------------------------------------------------
   Lightbox
   ---------------------------------------------------------- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-align: center;
    max-width: 600px;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--border-radius);
    backdrop-filter: blur(4px);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ----------------------------------------------------------
   Service Cards
   ---------------------------------------------------------- */
.service-card {
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border-light);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-card-image .service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.25rem 0.875rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-accent);
}

.service-card-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    flex: 1;
}

.service-card .price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.service-card .price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.service-card-features li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.75rem;
    font-size: 0.9rem;
    color: var(--color-text);
}

.service-card-features li::before {
    content: '\F272';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--color-secondary);
    font-size: 0.9rem;
}

/* Icon-style service cards */
.service-card-icon {
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    height: 100%;
}

.service-card-icon:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.service-card-icon .icon-circle {
    width: 72px;
    height: 72px;
    background: var(--color-primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: var(--color-primary);
    transition: var(--transition);
}

.service-card-icon:hover .icon-circle {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.service-card-icon h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card-icon p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   Step Process Cards
   ---------------------------------------------------------- */
.step-card {
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    height: 100%;
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

/* ----------------------------------------------------------
   About Section
   ---------------------------------------------------------- */
.about-section {
    padding: 5rem 0;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-xl);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-accent-box {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.25rem 1.75rem;
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-accent-box .number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-accent-box .label {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about-content h2 {
    margin-bottom: 1.25rem;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--color-text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.about-stat {
    text-align: center;
}

.about-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-stat .label {
    font-size: 0.825rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* ----------------------------------------------------------
   CTA Sections
   ---------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background-size: cover;
    background-position: center;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(37, 99, 235, 0.9) 0%,
        rgba(30, 41, 59, 0.92) 100%
    );
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    font-size: 1.05rem;
    padding: 0.875rem 2.5rem;
    border-radius: var(--border-radius-pill);
}

/* Simple CTA without background image */
.cta-simple {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-simple::before {
    display: none;
}

.cta-simple h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-simple p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ----------------------------------------------------------
   Contact & Booking Form
   ---------------------------------------------------------- */
.form-container {
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
}

.form-container h3 {
    margin-bottom: 0.5rem;
}

.form-container .form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-accent);
    margin-bottom: 0.375rem;
}

.form-control,
.form-select {
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    color: var(--color-text);
    background-color: var(--color-white);
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: var(--color-text-muted);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Date/time picker fields */
.form-control[type="date"],
.form-control[type="time"] {
    cursor: pointer;
}

/* Contact info sidebar */
.contact-info-card {
    background: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: var(--color-primary-light);
    margin-top: 0.15rem;
}

.contact-info-item h5 {
    color: var(--color-white);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   Testimonials
   ---------------------------------------------------------- */
.testimonial-card {
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-card .quote-icon {
    font-size: 2.5rem;
    color: var(--color-primary-100);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info {
    font-size: 0.9rem;
}

.testimonial-author-info .name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-accent);
}

.testimonial-author-info .role {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* ----------------------------------------------------------
   FAQ Accordion
   ---------------------------------------------------------- */
.faq-section {
    padding: 5rem 0;
}

.faq-accordion .accordion-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--color-primary);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-accent);
    background: var(--color-white);
    padding: 1.25rem 1.5rem;
    box-shadow: none;
    border-radius: var(--border-radius-lg) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--color-primary);
    background: var(--color-primary-50);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    width: auto;
    height: auto;
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '\2013';
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ----------------------------------------------------------
   Featured / Highlight Cards
   ---------------------------------------------------------- */
.highlight-card {
    background: var(--color-white);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: var(--transition);
    height: 100%;
}

.highlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-primary-100);
}

.highlight-card i {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    display: block;
}

.highlight-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0;
}

/* ----------------------------------------------------------
   Sport Category Tags
   ---------------------------------------------------------- */
.sport-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    font-family: var(--font-heading);
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-primary-50);
    border-radius: var(--border-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sport-tag.baseball { background: #FEF3C7; color: #92400E; }
.sport-tag.soccer { background: #D1FAE5; color: #065F46; }
.sport-tag.football { background: #FEE2E2; color: #991B1B; }
.sport-tag.basketball { background: #FFE4E6; color: #9F1239; }
.sport-tag.hockey { background: #E0E7FF; color: #3730A3; }
.sport-tag.lacrosse { background: #F3E8FF; color: #6B21A8; }
.sport-tag.softball { background: #ECFDF5; color: #047857; }

/* ----------------------------------------------------------
   Footer
   ---------------------------------------------------------- */
.site-footer {
    background: var(--color-accent);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 0;
}

.site-footer h3,
.site-footer h5 {
    color: var(--color-white);
    font-weight: 700;
}

.site-footer h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.site-footer h3 i {
    color: var(--color-primary-light);
}

.site-footer h5 {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.75rem;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.5rem;
}

.site-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
}

.site-footer ul li a::before {
    content: '\F285';
    font-family: 'bootstrap-icons';
    font-size: 0.65rem;
    margin-right: 0.5rem;
    color: var(--color-primary-light);
    transition: var(--transition-fast);
}

.site-footer ul li a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.site-footer ul li a:hover::before {
    color: var(--color-white);
}

.site-footer .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 0.85rem;
}

.site-footer .btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.825rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ----------------------------------------------------------
   Loading & Animation Utilities
   ---------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Spinner for HTMX loading */
.htmx-indicator {
    display: none;
}

.htmx-request .htmx-indicator {
    display: inline-block;
}

.spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ----------------------------------------------------------
   Alert / Success Messages
   ---------------------------------------------------------- */
.alert-success-custom {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
    border-radius: var(--border-radius-lg);
    padding: 1.25rem 1.5rem;
}

.alert-success-custom i {
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.alert-error-custom {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
    border-radius: var(--border-radius-lg);
    padding: 1.25rem 1.5rem;
}

/* ----------------------------------------------------------
   Responsive Adjustments
   ---------------------------------------------------------- */

/* Large screens */
@media (min-width: 1400px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    :root {
        --header-height: 70px;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }

    .section { padding: 3.5rem 0; }
    .section-lg { padding: 5rem 0; }

    .hero {
        min-height: 70vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .navbar-collapse {
        background: var(--color-white);
        border-radius: var(--border-radius-lg);
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--color-border);
    }

    .site-header.header-transparent .navbar-collapse {
        background: var(--color-white);
    }

    .site-header.header-transparent .navbar-collapse .nav-link {
        color: var(--color-accent);
        text-shadow: none;
    }

    .nav-link::after {
        display: none;
    }

    .btn-book {
        display: block;
        text-align: center;
        margin: 0.5rem 0 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .gallery-grid.masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .form-container {
        padding: 1.75rem;
    }

    .page-header {
        padding: 7rem 0 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    :root {
        --header-height: 64px;
    }

    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.625rem; }
    h3 { font-size: 1.375rem; }

    .section { padding: 2.5rem 0; }

    .hero {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-content .btn {
        font-size: 0.95rem;
        padding: 0.75rem 2rem;
    }

    .hero-sm {
        min-height: 35vh;
    }

    .hero-sm .hero-content h1 {
        font-size: 1.875rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.75rem;
    }

    .gallery-grid.masonry {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-fixed .gallery-item {
        height: 200px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(
            to top,
            rgba(30, 41, 59, 0.7) 0%,
            transparent 60%
        );
    }

    .gallery-overlay .gallery-icon {
        display: none;
    }

    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .filter-pill {
        padding: 0.375rem 1rem;
        font-size: 0.8rem;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .lightbox-prev { left: 0.75rem; }
    .lightbox-next { right: 0.75rem; }

    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .about-stat .number {
        font-size: 1.5rem;
    }

    .about-stat .label {
        font-size: 0.75rem;
    }

    .about-accent-box {
        position: static;
        margin-top: 1rem;
        display: inline-block;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: var(--border-radius-lg);
    }

    .service-card-body {
        padding: 1.25rem;
    }

    .service-card-icon {
        padding: 1.5rem 1.25rem;
    }

    .service-card-icon .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 3.5rem 0;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .page-header {
        padding: 6rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .site-footer {
        padding: 3rem 0 0;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.25rem 0;
    }

    .faq-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .faq-accordion .accordion-body {
        padding: 0 1.25rem 1rem;
        font-size: 0.875rem;
    }

    .contact-info-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.625rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .gallery-grid-fixed .gallery-item {
        height: 160px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ----------------------------------------------------------
   Print Styles
   ---------------------------------------------------------- */
@media print {
    .site-header,
    .site-footer,
    .lightbox,
    .btn-book,
    .cta-section,
    .gallery-overlay {
        display: none !important;
    }

    body {
        background: white;
        color: black;
        font-size: 12pt;
    }

    .main-content {
        padding-top: 0;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
    }

    .hero::before {
        display: none;
    }

    .hero-content h1 {
        color: black;
        text-shadow: none;
    }
}
