/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fdfdfd;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff7eb9; /* Playful Pink */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 60vh;
    background: #ffe3ed; /* Soft Pink background */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #2d3436;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #ff7eb9;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
}

.cta-button:hover {
    background: #e066a1;
}

/* Product Grid */
.product-section {
    padding: 50px 5%;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    font-size: 80px; /* Using Emojis as placeholders */
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.add-to-cart {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}
/* Login Link Styling */
.login-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Sign Up Button Styling */
.signup-btn {
    background-color: #333; /* Dark contrast to your pink theme */
    color: white !important;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.signup-btn:hover {
    background-color: #ff7eb9; /* Turns pink when hovered */
}
.login-container {
    display: none; /* Keeps it hidden by default */
    position: fixed; 
    z-index: 1000; /* Ensures it sits on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Dims the background behind the box */
    justify-content: center;
    align-items: center;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.about-section {
    padding: 100px 10%;
    background-color: #ffffff;
    text-align: center;
    line-height: 1.8;
}

.about-container {
    max-width: 850px;
    margin: 0 auto;
}

.story-block h2, .mission-block h3 {
    color: #ff7eb9;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0;
}

.focus-points ul {
    list-style: none;
    padding: 20px;
    display: inline-block;
    text-align: left;
    background: #fff0f6;
    border-radius: 15px;
    margin: 30px 0;
}

.love-letter {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
/* --- Hamburger Menu Styling --- */
.menu-toggle {
    display: none; /* Hide the checkbox */
}

.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 4px;
    background: #333;
    border-radius: 10px;
    transition: 0.3s;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }

    .nav-links {
        display: none; /* Hide links by default on mobile */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    /* When checkbox is checked, show the menu */
    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }
}

/* Fix for the "Squished" look in your screenshot */
.about-container {
    max-width: 800px;
    margin: 50px auto; /* Adds space between hero and story */
    padding: 0 20px;
    text-align: center;
}
