:root {
    --primary-color: #FF69B4;
    --primary-light: #FFB6C1;
    --primary-dark: #DB7093;
    --text-color: #333333;
    --background-color: #FFFFFF;
    --accent-color: #FFF0F5;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    padding-top: 70px; /* Reduced padding since we removed the banner */
    font-weight: 300;
}

/* Header and Navigation */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0; /* Changed from 40px to 0 since we removed the banner */
    left: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px); /* Ensure footer stays at bottom */
}

.hero {
    background-color: var(--accent-color);
    text-align: center;
    padding: 4rem 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* Featured Products */
.featured {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.featured h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-card h3 {
    font-weight: 500;
    margin: 1rem 0;
    color: var(--primary-dark);
    font-size: 1.4rem;
}

.product-card p {
    font-weight: 300;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-card .price {
    font-weight: 500;
    color: var(--primary-dark);
    margin-top: 0.5rem;
}

.product-image {
    aspect-ratio: 4/5;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: var(--accent-color);
    padding: 1.5rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: var(--primary-dark);
}

.footer-content p {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--primary-dark);
}

@media (max-width: 768px) {
    footer {
        padding: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .footer-content p {
        font-size: 0.85rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 90px; /* Reduced padding for mobile layout */
    }

    nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        padding: 0.5rem 0;
        width: 100%;
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .product-card p {
        font-size: 0.95rem;
    }
}

/* Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--primary-light);
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.submit-button:hover {
    background-color: var(--primary-dark);
}

/* reCAPTCHA Styles */
.g-recaptcha {
    margin: 1rem 0;
}

@media screen and (max-width: 400px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left center;
    }
}

#success-message {
    background-color: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    border: 2px solid var(--primary-light);
}

#success-message h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

#success-message p {
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Occasion Showcase Section */
.occasion-showcase {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #fafafa;
}

.occasion-showcase h2 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 2rem;
}

.occasion-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.occasion-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    aspect-ratio: 2/3; /* This will maintain a consistent 2:3 aspect ratio */
}

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

.occasion-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.occasion-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    margin: 0;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .occasion-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .occasion-showcase {
        padding: 2rem 1rem;
    }
    
    .occasion-showcase h2 {
        font-size: 1.75rem;
    }
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu-overlay {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        padding: 80px 20px 20px;
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #eee;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    body.menu-open {
        overflow: hidden;
    }
} 