/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Ensure content takes up space so footer stays at the bottom */
body > * {
    flex: 1 0 auto;
}

/* Hero Section (Image Only) */
.hero-section {
    height: 100vh;
    background: url('hero-banner.jpg');
    background-size: cover;
    background-position: center;
}

/* Brand Info Section (Below Hero) */
.brand-info {
    background-color: #fff;
}

.brand-name {
    font-size: 3rem;
    font-weight: 600;
    color: #ff6f91;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: #333;
}

.launching-soon {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ff4d73;
    margin-top: 20px;
}

/* About and Contact Sections */
.bg-light-pink {
    background-color: #ffe1e8;
}

#about p, #contact p {
    font-size: 1.1rem;
    line-height: 1.6;
}

#contact a {
    color: #ff6f91;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #ff4d73; /* Updated to match the "Launching Soon" text color */
    color: #fff;
    flex-shrink: 0;
}

.footer p {
    margin: 0;
}