/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0;
    text-align: center;
    overflow: hidden;
    margin: 70px 0 0;
}

.hero-section h1 {
    word-wrap: break-word;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
    scroll-margin-top: 70px; /* Offset for fixed header */
}

/* Color Utilities */
.bg-light-pink {
    background-color: #fff5f8;
}

.text-pink {
    color: #ec008c;
}

/* Buttons */
.btn-pink {
    background-color: #ec008c;
    color: white !important; 
    border-radius: 30px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-pink:hover {
    background-color: #c20075;
    color: white !important;
}

/* Feature Cards */
.feature-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
}

/* About Image */
.about-img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background-color: #343134;
    color: white;
    padding: 40px 0;
}

/* Progress Bar */
.progress-container {
    position: fixed;
    top: 0; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    z-index: 1030; /* Just below navbar */
}

.progress-bar {
    height: 100%;
    background-color: #fff; /* White progress bar */
    width: 0%;
}

/* Active Link Highlight */
.navbar-nav .nav-link.active {
    color: white !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0;
    }

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

    .progress-container {
        top: 0; /* Should match navbar height on mobile */
    }

    .container {
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}
