@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* General Body Styles */
body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #F6B87A;
    color: #D32F2F;
    transition: background 0.6s;
    /* Subtle pattern using SVG data URI */
    background-image: url('data:image/svg+xml;utf8,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="40" height="40" fill="%23F6B87A"/><path d="M20 0 Q25 10 40 10 Q30 20 40 40 Q20 30 0 40 Q10 20 0 10 Q15 10 20 0 Z" fill="%23FFD699" fill-opacity="0.25"/></svg>');
}

/* Loader Styles */
#loader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(246, 184, 122, 0.98);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
.loader-spinner {
    border: 6px solid #FFD699;
    border-top: 6px solid #D32F2F;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header and Navigation */
header {
    background: #D32F2F;
    color: #FFE600;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    backdrop-filter: blur(4px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

nav .logo a {
    color: #FFE600;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #FFD699;
    transition: text-shadow 0.3s;
}

nav .logo a:hover {
    text-shadow: 0 4px 16px #FFE600;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #FFE600;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    transition: text-shadow 0.2s, color 0.2s;
}

nav ul li a:hover {
    text-shadow: 0 2px 8px #FFD699;
    color: #fff;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    color: #D32F2F;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: #FFD699;
    color: #D32F2F;
    text-align: center;
    padding: 70px 20px 50px 20px;
    border-radius: 18px;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px #FFD69955;
    animation: heroFadeIn 2s cubic-bezier(0.4,0,0.2,1);

}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #FFE600 !important;
    text-shadow: 2px 2px 12px #8B5C00, 0 4px 24px #000000cc;
    position: relative;
    z-index: 10;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #D32F2F;
    color: #FFE600;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px #FFD699;
    transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #FFE600;
    color: #D32F2F;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 6px 24px #FFD699;
}

/* Featured Products Section */
.featured-products {
    background: #FFD699;
    color: #D32F2F;
    padding: 36px 20px;
    border-radius: 14px;
    box-shadow: 0 4px 24px #FFD69955;
    animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.product-item {
    background: #FFD699;
    color: #D32F2F;
    border: 2px solid #F6B87A;
    border-radius: 16px;
    text-align: center;
    padding: 28px 12px;
    transition: box-shadow 0.3s, border 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px #FFD69933;
    opacity: 0;
    transform: translateY(40px);
}

.product-item[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

.product-item:hover {
    box-shadow: 0 8px 32px #FFD699;
    border: 2.5px solid #D32F2F;
    transform: scale(1.04) translateY(-4px);
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 2px solid #F6B87A;
    box-shadow: 0 2px 12px #FFD69933;
    transition: box-shadow 0.2s;
}

.product-item img:hover {
    box-shadow: 0 6px 24px #FFD699;
}

.product-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 7px;
}

.product-item p {
    font-size: 1.05rem;
    font-weight: 400;
}

/* Footer */
footer {
    background: #D32F2F;
    color: #FFE600;
    text-align: center;
    padding: 24px 0 16px 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 24px;
    border-top: 2px solid #FFD699;
    box-shadow: 0 -2px 12px #FFD699;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #FFD699;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 16px #FFD699;
    animation: fadeInUp 1.2s cubic-bezier(0.4,0,0.2,1);
}

.contact-form label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #D32F2F;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1rem;
    padding: 10px 12px;
    border: 2px solid #F6B87A;
    border-radius: 6px;
    background: #fff;
    color: #D32F2F;
    margin-bottom: 8px;
    outline: none;
    transition: border 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 2.5px solid #D32F2F;
    box-shadow: 0 2px 8px #FFD699;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 300px;
}

.contact-form .cta-button {
    margin-top: 10px;
    align-self: flex-end;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 12px 32px;
    background: #D32F2F;
    color: #FFE600;
}

.contact-form .cta-button:hover {
    background: #FFE600;
    color: #D32F2F;
} 