﻿/* General Body & Typography */
body {
    font-family: 'Poppins', sans-serif; /* A more modern, elegant font */
    color: #333;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Lighter background */
    overflow-x: hidden; /* Prevent horizontal scroll on animations */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif; /* A strong, modern heading font */
    color: snow; /* Darker headings */
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh; /* Responsive height */
    min-height: 450px; /* Minimum height for larger screens */
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay; /* Blend mode for subtle image effect */
    background-color: rgba(0, 0, 0, 0.45); /* Darker overlay for text readability */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Padding for smaller screens */
}

.hero-content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.hero-slogan {
    font-size: 3.8rem; /* Larger for impact */
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300; /* Lighter font weight */
}

/* Buttons - Bootstrap 5 based with custom styles */
.btn-primary {
    background-color: #e91e63; /* A vibrant, elegant pink */
    border-color: #e91e63;
    color: white;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #c2185b; /* Darker on hover */
        border-color: #c2185b;
        transform: translateY(-3px); /* Subtle lift effect */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.btn-outline-primary { /* Changed btn-secondary to btn-outline-primary for Bootstrap consistency */
    color: #e91e63;
    border-color: #e91e63;
    background-color: transparent;
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: #e91e63;
        color: white;
        transform: translateY(-3px); /* Subtle lift effect */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

/* Section Titles */
.section-title {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #343a40; /* Darker for better contrast */
    position: relative;
    padding-bottom: 15px;
    font-weight: 600; /* More prominent */
}

    .section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100px; /* Wider underline */
        height: 4px; /* Thicker underline */
        background-color: #e91e63; /* Matching primary color */
        border-radius: 2px;
    }

/* Features Grid */
.features-grid {
    margin-top: 2rem;
}

.feature-item.card { /* Targeting the card class for better styling */
    background-color: #fff;
    border-radius: 12px; /* More rounded corners */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); /* Softer, larger shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Ensure proper sizing with flexbox */
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Ensure a minimum height for consistency */
}

    .feature-item.card:hover {
        transform: translateY(-10px); /* More pronounced lift */
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
    }

.feature-item .card-body {
    padding: 2.5rem; /* More padding inside cards */
}

.feature-item .card-title {
    color: #e91e63; /* Matching primary color */
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item .card-text {
    font-size: 1.05rem;
    color: #6c757d; /* Muted text color */
}

.feature-item .text-primary { /* Font Awesome icon color */
    color: #e91e63 !important; /* Important to override default Bootstrap text-primary if needed */
}

/* About Section */
.about-section {
    background-color: #f0f8ff; /* Light blue remains for calm effect */
    padding: 60px 0;
    border-top: 1px solid #dee2e6; /* Subtle top border */
}

/* Lead text style for better readability */
.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #495057;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-slogan {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-slogan {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-item .card-body {
        padding: 2rem;
    }

    .feature-item .card-title {
        font-size: 1.4rem;
    }

    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .hero-slogan {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn-primary, .btn-outline-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

        .section-title::after {
            width: 60px;
            height: 3px;
        }

    .feature-item .card-body {
        padding: 1.5rem;
    }

    .feature-item .card-title {
        font-size: 1.2rem;
    }

    .feature-item .fa-3x {
        font-size: 2.5em; /* Adjust icon size for smaller screens */
    }
}
@media (max-width: 768px) {
    .navbar {
        width: 100vw !important;
        overflow-x: hidden !important;
        margin: 0 auto !important;
        position: relative;
        left: 0 !important;
        right: 0 !important;
    }

    .navbar-collapse {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    body {
        overflow-x: hidden !important;
    }
}
