/* ========================================
   SHANE LIPSON WEBSITE - STYLES
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* ========== NAVIGATION ========== */
.navbar {
    background-color: #005A9C;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    opacity: 0.8;
    border-bottom: 2px solid white;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #005A9C 0%, #003d6b 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* ========== PAGE HEADER ========== */
.page-header {
    background-color: #f5f5f5;
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid #005A9C;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #005A9C;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ========== SERVICES GRID (HOMEPAGE) ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.services-grid-2x2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-card h2 {
    color: #005A9C;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    background-color: #005A9C;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #003d6b;
    transform: scale(1.02);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
}

.cta-button-center {
    text-align: center;
    margin: 2rem 0;
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.content-section h2 {
    color: #005A9C;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ========== PRICING GRID ========== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-card {
    background-color: #f9f9f9;
    border-left: 4px solid #005A9C;
    padding: 2rem;
    border-radius: 4px;
}

.pricing-card h3 {
    color: #005A9C;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #005A9C;
    margin: 0.5rem 0 1rem 0;
}

.pricing-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== FEATURES GRID (CFI PAGE) ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-box {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid #005A9C;
}

.feature-box h3 {
    color: #005A9C;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-box p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========== SERVICES LIST ========== */
.services-list {
    list-style: none;
    margin: 2rem 0;
}

.services-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    color: #555;
    position: relative;
    line-height: 1.7;
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #005A9C;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    text-align: center;
}

.contact-section .contact-info {
    text-align: center;
}

.contact-info p {
    margin: 1rem 0;
}

.contact-info .phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: #005A9C;
}

.contact-with-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.contact-with-logo .contact-info {
    text-align: center;
}

.logo-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image img {
    max-width: 360px;
    height: auto;
    display: block;
}

/* ========== SERVICES WITH IMAGE (CFI PAGE) ========== */
.services-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.services-image {
    width: 100%;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.services-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ========== VENMO SECTION (DPE PAGE) ========== */
.venmo-section {
    background-color: #1a1a1a;
    color: white;
    text-align: center;
}

.venmo-section h2 {
    color: #005A9C;
}

.venmo-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-venmo {
    background-color: #005A9C;
    padding: 1rem;
    font-size: 0.95rem;
}

.btn-venmo:hover {
    background-color: #003d6b;
}

/* ========== DOCUMENTS SECTION (DPE PAGE) ========== */
.documents-section {
    background-color: #1a1a1a;
    color: white;
}

.documents-section h2 {
    color: #005A9C;
}

.documents-list {
    margin-top: 2rem;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #2a2a2a;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.document-item span {
    color: #ddd;
    font-size: 0.95rem;
}

.download-link {
    color: #005A9C;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #0078d4;
}
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    font-size: 0.9rem;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

    .hero .tagline {
        font-size: 1rem;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .services-with-image {
        grid-template-columns: 1fr;
    }

    .venmo-buttons {
        flex-direction: column;
    }

    .contact-with-logo {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .container {
        padding: 2rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 0.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-menu a {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

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

    .service-card h2 {
        font-size: 1.25rem;
    }
}
