/* Global Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #333;
}

h1, h2, h3 {
    margin: 0;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: white;
    border-bottom: 2px solid #f7cfe3;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e88bb5;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.navbar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.navbar a:hover {
    color: #e88bb5;
}

/* Hero Section */
.hero {
    background: #f9d7e8;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.hero-card h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #e05c9b;
}

.tagline {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #555;
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: #e05c9b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
}

.cta-button:hover {
    background: #c94f89;
}

/* About Section */
.about {
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.about h2 {
    color: #e05c9b;
    margin-bottom: 20px;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 40px;
    background: #fef1f7;
}

.feature {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.feature h3 {
    color: #e05c9b;
    margin-bottom: 10px;
}

/* Coming Soon / Shop */
.coming-soon {
    padding: 60px 40px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.product-card {
    background: #f9d7e8;
    padding: 40px;
    border-radius: 15px;
    width: 180px;
    font-weight: 600;
    color: #e05c9b;
}

/* Services */
.services {
    padding: 60px 40px;
    text-align: center;
    background: #fef1f7;
}

.services h2 {
    color: #e05c9b;
}

/* Contact */
.contact {
    padding: 60px 40px;
    text-align: center;
}

.contact h2 {
    color: #e05c9b;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #f9d7e8;
    color: #555;
}