* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #e91e63;
}

.logo-image {
    height: 30px;
    width: auto;
    max-width: 40px;
    margin-right: 10px;
    border-radius: 5px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e91e63;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #e91e63;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #e91e63;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* Hero Story Section */
.hero-story {
    margin: 40px 0;
}

.hero-story h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    color: #e91e63;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-story p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Cupcakes Section */
.cupcakes-section {
    padding: 80px 0;
    background: #fff;
}

.cupcakes-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #e91e63;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.cupcake-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.cupcake-image {
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.cupcake-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cupcake-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cupcake-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.2rem;
    color: #e91e63;
    margin-bottom: 15px;
}

.cupcake-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
}

.quantity {
    background: #f8e8ff;
    color: #e91e63;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
}

.order-info {
    background: #f0f8ff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #e91e63;
}

.order-info p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.order-button {
    background: linear-gradient(45deg, #e91e63, #ff4081);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
}

.about-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #e91e63;
    text-align: center;
    margin-bottom: 50px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-text em {
    color: #999;
    font-style: italic;
}

/* Charity Section */
.charity-section {
    padding: 80px 0;
    background: white;
}

.charity-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #e91e63;
    text-align: center;
    margin-bottom: 50px;
}

.charity-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.charity-logo {
    text-align: center;
}

.charity-logo img {
    max-width: 350px;
    height: auto;
}

.charity-text h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.charity-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.charity-text em {
    color: #999;
    font-style: italic;
}

.charity-impact {
    background: #f0f8ff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
    margin-top: 20px;
}

.charity-impact p {
    margin: 0;
    font-weight: 600;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffeef8 0%, #f8e8ff 100%);
}

.contact-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #e91e63;
    text-align: center;
    margin-bottom: 20px;
}

.contact-section > .container > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
}

.contact-item h4 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
}

footer p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo-image {
        height: 25px;
        max-width: 30px;
    }
    
    .nav-logo {
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-story h1 {
        font-size: 2.8rem;
    }
    
    .cupcake-card {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .charity-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}
