/*
Theme Name: InSoCal Custom Theme
Author: Naren
Version: 1.0
*/

:root {
            --primary-blue: #0066b3;
            --dark-blue: #003d6b;
            --accent-orange: #f26522;
            --light-blue: #4a9fd8;
            --white: #FFFFFF;
            --bg-light: #f4f7f9;
            --text-gray: #444;
        }

        * { box-sizing: border-box; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            margin: 0;
            color: var(--text-gray);
            background-color: var(--white);
            line-height: 1.6;
        }

        /* --- Navigation --- */
        .site-header {
            background: var(--white);
            padding: 10px 5%;
            border-bottom: 4px solid var(--accent-orange);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
			width: 100%; /* Ensures it spans the full screen */
        }

        .logo { 
            display: flex; 
            align-items: center; 
            text-decoration: none; 
        }

        .logo img {
            height: 50px; /* Adjusted for better visibility */
            width: auto;
        }
		
		.header-container {
			display: flex;
			justify-content: space-between; /* Pushes logo left, menu right */
			align-items: center;
			max-width: 1400px;
			margin: 0 auto;
			padding: 10px 20px;
			width: 100%;
		}

        .nav-menu {
            list-style: none;
            display: flex;
            align-items: center;
            margin: 0;
            padding: 0;
			gap: 25px; /* Spacing between links */
			align-items: center;
        }

        .nav-menu li {
            margin-left: 25px;
        }

        .nav-menu a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: 0.3s;
        }

        .nav-menu a:hover:not(.btn-orange) {
            color: var(--accent-orange);
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            /* Replace URL with your collage or map image */
            background: linear-gradient(rgba(0, 61, 107, 0.85), rgba(0, 102, 179, 0.7)), 
                        url('https://images.unsplash.com/photo-1557804506-669a67965ba0?auto=format&fit=crop&q=80&w=1974');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding: 0 8%;
            color: var(--white);
        }

        .hero-content { 
            position: relative; 
            z-index: 2; 
            max-width: 800px; 
        }

        .hero h1 { 
            font-size: 3.5rem; 
            line-height: 1.1; 
            margin-bottom: 1.5rem; 
            font-weight: 800;
        }

        .hero p { 
            font-size: 1.3rem; 
            margin-bottom: 2.5rem; 
            opacity: 0.95; 
        }

        /* --- Buttons --- */
        .btn {
            padding: 14px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .btn-orange { 
            background: var(--accent-orange); 
            color: var(--white) !important; 
            border: none;
            box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
        }

        .btn-orange:hover { 
            background: var(--dark-blue) !important; 
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 61, 107, 0.4);
        }

        .btn-outline { 
            border: 2px solid var(--white); 
            color: var(--white); 
            margin-left: 15px; 
        }

        .btn-outline:hover { 
            background: var(--white); 
            color: var(--dark-blue); 
        }

        /* --- Global Sections --- */
        section { padding: 90px 8%; }
        
        .section-title { 
            font-size: 2.2rem; 
            color: var(--dark-blue); 
            margin-bottom: 1rem; 
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: ""; display: block; width: 60px; height: 4px; background: var(--accent-orange); margin-top: 10px;
        }

        .split-section { display: flex; gap: 50px; align-items: center; }
        .content-box { flex: 1; }

        /* --- Grid Cards --- */
        .how-it-works {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .step-card {
            background: var(--white);
            padding: 40px;
            border-top: 5px solid var(--light-blue);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
        }

        .step-card:hover { border-color: var(--accent-orange); transform: translateY(-5px); }
        .step-num { font-size: 3rem; font-weight: 900; color: #f26522; margin-bottom: -20px; display: block; }

        /* --- Roles --- */
        .roles-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .role-box {
            background: var(--dark-blue);
            color: var(--white);
            padding: 30px 20px;
            text-align: center;
            font-weight: 600;
            border-radius: 4px;
        }

        /* --- Footer --- */
        footer {
            background: #00213d;
            color: var(--white);
            padding: 80px 8% 40px;
            text-align: center;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.4rem; }
            .split-section { flex-direction: column; }
            .nav-menu { display: none; } /* Recommended: Add mobile toggle here */
            .btn-outline { margin-left: 0; margin-top: 15px; width: 100%; text-align: center; }
            .btn-orange { width: 100%; text-align: center; }
        }