/* 
CCNC - Unified Blue Theme CSS
Created: September 29, 2025
Purpose: Modern blue color scheme for all Custom Cars & Coffee Melbourne pages

This unified theme provides consistent styling across:
- ccnc.aspx (main page)
- ccnc-gallery.aspx
- ccnc-about.aspx
- ccnc-contact.aspx

Usage: Include this CSS file in CCNCMaster.Master or individual pages
*/

:root {
    --ccnc-primary: #2980b9;
    --ccnc-primary-hover: #1e6390;
    --ccnc-secondary: #34495e;
    --ccnc-accent: #3498db;
    --ccnc-light-blue: #e8f4f8;
    --ccnc-dark-blue: #1b4f72;
    --ccnc-gradient-start: rgba(52, 73, 94, 0.9);
    --ccnc-gradient-end: rgba(52, 152, 219, 0.8);
    --ccnc-text-primary: #2c3e50;
    --ccnc-text-secondary: #4a5568;
    --ccnc-text-muted: #718096;
    --ccnc-border-light: rgba(52, 152, 219, 0.2);
    --ccnc-shadow-light: 0 2px 10px rgba(52, 152, 219, 0.1);
    --ccnc-shadow-medium: 0 4px 20px rgba(52, 152, 219, 0.1);
    --ccnc-shadow-heavy: 0 8px 25px rgba(52, 152, 219, 0.15);
}

/* ==========================================================================
   HERO SECTIONS (Common across all pages)
   ========================================================================== */

.hero-section,
.about-hero-section,
.gallery-hero-section,
.contact-hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.hero-container,
.about-hero-container,
.gallery-hero-container,
.contact-hero-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-picture,
.about-hero-picture,
.gallery-hero-picture,
.contact-hero-picture {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image,
.about-hero-image,
.gallery-hero-image,
.contact-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay,
.about-hero-overlay,
.gallery-hero-overlay,
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Neutral overlay for readability without color tint */
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.10) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content,
.about-hero-content,
.gallery-hero-content,
.contact-hero-content {
    color: white;
    max-width: 600px;
    padding: 2rem;
}

.hero-title,
.about-hero-title,
.gallery-hero-title,
.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle,
.about-hero-subtitle,
.gallery-hero-subtitle,
.contact-hero-subtitle {
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
}

.hero-badge,
.about-hero-badge,
.gallery-hero-badge,
.contact-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 20px;
    border: 2px solid rgba(255,255,255,0.25);
}

/* ==========================================================================
   MAIN CONTENT SECTIONS
   ========================================================================== */

.main-content,
.about-main-content,
.gallery-main-content,
.contact-main-content {
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--ccnc-secondary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--ccnc-text-muted);
    margin-bottom: 2rem;
    text-align: center;
}

/* ==========================================================================
   CONTENT SECTIONS
   ========================================================================== */

.intro-section,
.welcome-section,
.gallery-intro-section,
.contact-intro-section {
    padding: 60px 0;
    background: white;
}

.intro-note,
.welcome-note {
    background: var(--ccnc-light-blue);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--ccnc-primary);
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   CARDS AND HIGHLIGHTS
   ========================================================================== */

.highlight-card,
.event-card,
.value-card,
.impact-card {
    background: var(--ccnc-light-blue);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid var(--ccnc-primary);
    transition: all 0.3s ease;
    box-shadow: var(--ccnc-shadow-light);
    margin-bottom: 1rem;
}

.highlight-card:hover,
.event-card:hover,
.value-card:hover,
.impact-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ccnc-shadow-heavy);
    border-left-color: var(--ccnc-accent);
}

.value-card,
.impact-card {
    text-align: center;
    background: white;
    border-top: 3px solid var(--ccnc-accent);
    border-left: none;
    height: 100%;
}

.value-card:hover,
.impact-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--ccnc-primary);
}

/* Card Icons */
.highlight-icon,
.value-icon,
.impact-icon {
    font-size: 2rem;
    color: var(--ccnc-primary);
    margin-bottom: 1rem;
}

.value-icon,
.impact-icon {
    font-size: 2.5rem;
}

/* Card Headings */
.highlight-card h3,
.event-card h4,
.value-card h3,
.impact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--ccnc-secondary);
    margin-bottom: 0.5rem;
}

.event-card h4 {
    font-size: 1.2rem;
    color: var(--ccnc-dark-blue);
    margin: 0 0 0.5rem 0;
}

.value-card h3,
.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Card Text */
.highlight-card p,
.event-card p,
.value-card p,
.impact-card p {
    margin: 0;
    color: var(--ccnc-text-secondary);
    line-height: 1.6;
}

.event-card p {
    margin-bottom: 1rem;
    font-weight: 500;
}

/* ==========================================================================
   TIMELINE AND SEASON SECTIONS
   ========================================================================== */

.timeline-gallery-section,
.journey-section {
    padding: 60px 0;
}

.season-section {
    margin-bottom: 4rem;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--ccnc-shadow-medium);
    border-top: 3px solid var(--ccnc-accent);
}

.season-section.founding-season {
    background: linear-gradient(135deg, var(--ccnc-secondary), var(--ccnc-dark-blue));
    color: white;
    border-top: 3px solid #f39c12;
}

.season-header {
    text-align: center;
    margin-bottom: 2rem;
}

.season-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ccnc-secondary);
    margin-bottom: 0.5rem;
}

.founding-season .season-title {
    color: white;
}

.season-description {
    font-size: 1rem;
    color: var(--ccnc-text-muted);
    margin: 0;
}

.founding-season .season-description {
    color: #ecf0f1;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.event-card.founding-event {
    background: rgba(255,255,255,0.1);
    border-left-color: #f39c12;
}

.founding-event .event-info h4 {
    color: white;
}

.founding-event .event-info p {
    color: #ecf0f1;
}

/* ==========================================================================
   BADGES AND LABELS
   ========================================================================== */

.event-type {
    display: inline-block;
    background: var(--ccnc-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founding-badge {
    background: #f39c12 !important;
}

/* ==========================================================================
   STATISTICS
   ========================================================================== */

.impact-stats,
.legacy-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ccnc-accent);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ecf0f1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

/* ==========================================================================
   PHOTO GRID
   ========================================================================== */

.photo-grid-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: var(--ccnc-shadow-light);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--ccnc-shadow-heavy);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ccnc-light-blue), #e3f2fd);
    color: var(--ccnc-primary);
    text-align: center;
    padding: 1rem;
}

.photo-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--ccnc-accent);
}

.photo-placeholder p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ccnc-secondary);
}

/* ==========================================================================
   LEGACY SECTIONS
   ========================================================================== */

.legacy-message,
.gallery-legacy-section,
.legacy-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--ccnc-secondary), var(--ccnc-dark-blue));
}

.legacy-section .legacy-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.legacy-section .legacy-icon i {
    font-size: 1.6rem;
    color: #fff;
}

.legacy-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
}

.legacy-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.legacy-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.legacy-card .lead {
    font-size: 1.3rem;
    font-weight: 500;
}

/* =====================================================================
   CCNC HOME - STATS + EVENT HISTORY HEADER (scoped)
   ===================================================================== */

.stats-section {
    padding: 48px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-top: 1px solid rgba(52, 152, 219, 0.10);
    border-bottom: 1px solid rgba(52, 152, 219, 0.10);
}

.stats-section .stat-card {
    height: 100%;
    text-align: center;
    padding: 18px 14px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(52, 152, 219, 0.18);
    border-radius: 14px;
    box-shadow: var(--ccnc-shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stats-section .stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ccnc-shadow-medium);
    border-color: rgba(52, 152, 219, 0.35);
}

.stats-section .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.35rem;
    color: var(--ccnc-primary);
}

.stats-section .stat-label {
    color: var(--ccnc-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.events-timeline-section {
    padding: 70px 0 40px;
    background: #f8f9fa;
}

.events-timeline-section .section-title {
    position: relative;
    margin-bottom: 0.75rem;
}

.events-timeline-section .section-title::after {
    content: "";
    display: block;
    width: 84px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ccnc-primary), var(--ccnc-accent));
    opacity: 0.95;
}

.events-timeline-section .section-subtitle {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    color: var(--ccnc-text-secondary);
}

/* =====================================================================
   CCNC HOME - BOTTOM SECTIONS (scoped)
   ===================================================================== */

.gallery-preview {
    padding: 70px 0;
    background:
        radial-gradient(1200px 400px at 50% -80px, rgba(52, 152, 219, 0.12), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 45%, #ffffff 100%);
    border-top: 1px solid rgba(52, 152, 219, 0.10);
}

.gallery-preview .section-title {
    position: relative;
    margin-bottom: 0.75rem;
}

.gallery-preview .section-title::after {
    content: "";
    display: block;
    width: 84px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ccnc-primary), var(--ccnc-accent));
    opacity: 0.95;
}

.gallery-preview .btn.btn-primary {
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 10px 22px rgba(41, 128, 185, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-preview .btn.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(41, 128, 185, 0.26);
}

.thankyou-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 70%);
}

.thankyou-section .thankyou-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem;
    box-shadow: var(--ccnc-shadow-medium);
    border: 1px solid rgba(52, 152, 219, 0.18);
    position: relative;
    overflow: hidden;
}

.thankyou-section .thankyou-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ccnc-primary), var(--ccnc-accent));
}

.thankyou-section .thankyou-card h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--ccnc-secondary);
    margin-bottom: 1rem;
}

.thankyou-section .thankyou-card p {
    color: var(--ccnc-text-secondary);
    line-height: 1.75;
}

.thankyou-section .social-links {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(52, 152, 219, 0.18);
}

.thankyou-section .social-links h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--ccnc-secondary);
    margin-bottom: 0.75rem;
}

.thankyou-section .social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.thankyou-section .btn-facebook,
.thankyou-section .btn-instagram {
    border-radius: 999px;
    padding: 10px 16px;
    border: none;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thankyou-section .btn-facebook {
    background: #1877f2;
}

.thankyou-section .btn-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.thankyou-section .btn-facebook:hover,
.thankyou-section .btn-instagram:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
    color: #fff;
}

.thankyou-section .btn.btn-outline-primary {
    border-radius: 999px;
    padding: 10px 16px;
}

/* =====================================================================
   CCNC CONTACT PAGE (scoped)
   ===================================================================== */

.contact-hero-section {
    background: #0b1220;
}

.contact-hero-container {
    background: url('/Content/ccnc-hero.jpg') center/cover no-repeat;
}

.contact-intro-section {
    padding: 70px 0;
    background: #fff;
}

.contact-form-section {
    padding: 70px 0;
    background:
        radial-gradient(900px 320px at 50% -60px, rgba(52, 152, 219, 0.12), transparent 60%),
        linear-gradient(180deg, #f8f9fa 0%, #ffffff 75%);
}

.contact-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--ccnc-shadow-medium);
    border: 1px solid rgba(52, 152, 219, 0.18);
    overflow: hidden;
}

.contact-form-header {
    padding: 1.75rem 1.75rem 1rem;
    border-bottom: 1px solid rgba(52, 152, 219, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-form-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--ccnc-secondary);
    margin: 0 0 0.25rem 0;
}

.contact-form-header p {
    margin: 0;
    color: var(--ccnc-text-muted);
}

.contact-form-body {
    padding: 1.75rem;
}

.contact-form-body .form-group {
    margin-bottom: 1rem;
}

.contact-form-body .form-label {
    font-weight: 700;
    color: var(--ccnc-secondary);
}

.contact-form-body .form-label.required::after {
    content: " *";
    color: #e74c3c;
    font-weight: 800;
}

.contact-form-body .form-control {
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.22);
    padding: 10px 12px;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.contact-form-body .form-control:focus {
    border-color: rgba(41, 128, 185, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(41, 128, 185, 0.15);
}

.contact-form-body .error-message {
    display: inline-block;
    margin-top: 0.4rem;
    color: #b42318;
    font-weight: 600;
}

.captcha-container {
    background: rgba(52, 152, 219, 0.06);
    border: 1px solid rgba(52, 152, 219, 0.14);
    border-radius: 14px;
    padding: 14px;
}

.captcha-container .captcha-input {
    margin-top: 10px;
}

.submit-group {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-ccnc-primary {
    background: linear-gradient(90deg, var(--ccnc-primary), var(--ccnc-accent));
    border: none;
    color: #fff;
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: 0 12px 22px rgba(41, 128, 185, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-ccnc-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(41, 128, 185, 0.26);
    color: #fff;
}

.contact-info-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(52, 152, 219, 0.18);
    box-shadow: var(--ccnc-shadow-light);
}

.contact-info-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--ccnc-secondary);
    margin-bottom: 1.25rem;
}

.contact-methods {
    display: grid;
    gap: 1rem;
}

.contact-method {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(52, 152, 219, 0.14);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(52, 152, 219, 0.12);
    color: var(--ccnc-primary);
}

.contact-icon i {
    font-size: 1.35rem;
}

.contact-details h4 {
    margin: 0 0 0.25rem 0;
    font-weight: 800;
    color: var(--ccnc-secondary);
}

.contact-details p {
    margin: 0 0 0.5rem 0;
    color: var(--ccnc-text-secondary);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    color: var(--ccnc-primary);
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--ccnc-primary-hover);
}

.contact-legacy-section {
    padding: 70px 0;
    background: linear-gradient(135deg, var(--ccnc-secondary), var(--ccnc-dark-blue));
}

.legacy-message-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 16px;
    padding: 2.25rem;
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.legacy-message-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    margin-bottom: 1rem;
}

.legacy-message-card p {
    opacity: 0.95;
    line-height: 1.75;
}

.legacy-message-card .signature {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   LINKS AND BUTTONS
   ========================================================================== */

.event-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ccnc-border-light);
}

.facebook-link,
.external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.facebook-link {
    background: #1877f2;
    color: white;
}

.facebook-link:hover {
    background: #166fe5;
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
}

.external-link {
    background: var(--ccnc-primary);
    color: white;
}

.external-link:hover {
    background: var(--ccnc-primary-hover);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(41, 128, 185, 0.3);
}

.founding-link {
    background: #f39c12;
}

.founding-link:hover {
    background: #e67e22;
    box-shadow: 0 3px 10px rgba(243, 156, 18, 0.3);
}

.event-links i {
    font-size: 0.9rem;
}

/* ==========================================================================
   FORMS AND CONTACT ELEMENTS
   ========================================================================== */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--ccnc-secondary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--ccnc-accent);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-primary {
    background: var(--ccnc-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--ccnc-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(41, 128, 185, 0.3);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    .hero-section,
    .about-hero-section,
    .gallery-hero-section,
    .contact-hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title,
    .about-hero-title,
    .gallery-hero-title,
    .contact-hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle,
    .about-hero-subtitle,
    .gallery-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .intro-section,
    .welcome-section,
    .gallery-intro-section,
    .contact-intro-section,
    .timeline-gallery-section,
    .journey-section,
    .photo-grid-section,
    .legacy-message,
    .gallery-legacy-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .season-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .facebook-link,
    .external-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .legacy-stats,
    .impact-stats {
        gap: 2rem;
    }

    .photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-title,
    .about-hero-title,
    .gallery-hero-title,
    .contact-hero-title {
        font-size: 1.8rem;
    }

    .legacy-card h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .legacy-stats,
    .impact-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--ccnc-primary);
}

.text-secondary {
    color: var(--ccnc-secondary);
}

.text-muted {
    color: var(--ccnc-text-muted);
}

.bg-light-blue {
    background-color: var(--ccnc-light-blue);
}

.border-primary {
    border-color: var(--ccnc-primary);
}

.shadow-light {
    box-shadow: var(--ccnc-shadow-light);
}

.shadow-medium {
    box-shadow: var(--ccnc-shadow-medium);
}

.shadow-heavy {
    box-shadow: var(--ccnc-shadow-heavy);
}