﻿
/* Hero Styles with Larger Fonts */
.hero-container {
    background: #f8fafc;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #e2e8f0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; /* Increased gap for larger text */
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        min-height: 75vh;
        padding: 3rem 2rem;
    }
}

.hero-text-content {
    animation: fadeInUp 0.8s ease-out;
}

    /* 1.5x LARGER HEADLINE */
    .hero-text-content h1 {
        font-size: 3.75rem; /* 2.5rem × 1.5 = 3.75rem */
        font-weight: 800;
        line-height: 1.1; /* Tighter line-height for larger text */
        margin-bottom: 2rem;
        color: #0f172a;
    }

    /* 1.5x LARGER SUBHEADING */
    .hero-text-content .lead {
        font-size: 1.875rem; /* 1.25rem × 1.5 = 1.875rem */
        color: #475569;
        margin-bottom: 3rem; /* More space for larger text */
        font-weight: 400;
        line-height: 1.4; /* Improved readability */
    }

.hero-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-out;
    position: relative;
}

    .hero-image-content img {
        width: 100%;
        max-height: 500px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        border: 1px solid #e2e8f0;
    }

@media (min-width: 992px) {
    .hero-image-content img {
        max-height: 65vh;
    }
}

/* Responsive adjustments for mobile */
@@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 2.8rem; /* Still 1.5x of original mobile size */
        line-height: 1.2;
    }

    .hero-text-content .lead {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.btn-icon-text {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Slightly larger gap */
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 1rem 2rem; /* Larger buttons */
    font-weight: 600;
    font-size: 1.25rem; /* Larger button text */
}

.btn-primary {
    background: #1e40af;
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.2);
}

.btn-outline-secondary {
    border: 2px solid #1e40af;
    color: #1e40af;
    background: transparent;
}

.btn-primary:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 64, 175, 0.25);
}

.btn-outline-secondary:hover {
    background: #eff6ff;
    transform: translateY(-2px);
}

/* Keyframes remain the same */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
