/* Landing Page Enhancement */

/* Hero Section with Gradient */

.landing-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 4rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: #1a1a1a;
}

.landing-hero .lead {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    letter-spacing: 0.3px;
    color: #555;
    font-weight: 500;
}

/* Image Container with aspect ratio */
.landing-image-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.landing-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Alternating Sections */
.landing-section {
    transition: background-color 0.3s ease;
    padding: 1rem 0;
    
}

.landing-section:nth-child(even) {
    background-color: #f8f9fa;
}

.landing-section:nth-child(odd) {
    background-color: #ffffff;
}

/* Content Typography */
.landing-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    letter-spacing: 0.3px;
}

.landing-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.landing-content h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.landing-content p {
    margin-bottom: 1.25rem;
}

.landing-content ul, .landing-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.landing-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* CTA Buttons */
.landing-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.landing-cta-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.landing-cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

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

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

/* Breadcrumb Enhancement */
.breadcrumb {
    background-color: rgba(0, 0, 0, 0.02);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .landing-hero h1 {
        margin: 2rem 0 1rem;
    }

    .landing-hero .lead {
        font-size: 1rem;
    }

    .landing-content {
        font-size: 1rem;
    }

    .landing-cta-buttons {
        flex-direction: column;
    }

    .landing-cta-buttons .btn {
        width: 100%;
    }

    #contact-form {
        margin-bottom: 5rem;
    }
}

