body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #e3eafc 0%, #f7fafd 100%);
    margin: 0;
    color: #1a2340;
    min-height: 100vh;
    overflow-x: hidden;
}
header {
    background: linear-gradient(90deg, #1a2340 60%, #3a7bd5 100%);
    color: #fff;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 16px rgba(26,35,64,0.18);
    position: relative;
    z-index: 2;
}
.logo-glow h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-shadow: 0 0 18px #d4af37, 0 2px 8px #1a2340;
    margin-bottom: 0.2rem;
    animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
    from { text-shadow: 0 0 18px #d4af37, 0 2px 8px #1a2340; }
    to { text-shadow: 0 0 32px #d4af37, 0 2px 16px #1a2340; }
}
.subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 1.5px;
    color: #f7f3e3;
    text-shadow: 0 1px 8px #d4af37;
}
nav {
    margin-top: 1.2rem;
}
nav a {
    color: #f7f3e3;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 600;
    font-size: 1.08rem;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
nav a:hover {
    color: #1a2340;
    background: #d4af37;
    box-shadow: 0 2px 8px #d4af3744;
}
main {
    max-width: 1200px;
    margin: 2.5rem auto;
    padding: 0 1rem;
}
section {
    margin-bottom: 2.5rem;
    background: #f7f3e3;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(26,35,64,0.10);
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
section:hover {
    box-shadow: 0 8px 32px #d4af3744;
}
/* Spice Catalog Grid */
/* Spice Catalog Grid */
.spices-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
    margin-top: 2rem;
}
.spice-card {
    background: #f7fafd;
    border: 2.5px solid #3a7bd5;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(58,123,213,0.10);
    padding: 0;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
}
.spice-card.animated {
    opacity: 1;
    transform: translateY(0);
}
.spice-card:hover {
    box-shadow: 0 12px 40px #3a7bd544;
    transform: scale(1.04);
    border-color: #d4af37;
}
.spice-card img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    border-radius: 16px;
    margin: 0;
    background: #fff;
    border: 4px solid #fff;
    box-shadow: 0 2px 16px #3a7bd522, 0 0 0 8px #f7fafd;
    display: block;
    position: relative;
    z-index: 1;
}
.spice-card h3 {
    margin: 0;
    font-size: 1.18rem;
    color: #3a7bd5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.2px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    padding: 0.8rem 0 0.5rem 0;
    z-index: 2;
    text-shadow: 0 2px 8px #e3eafc;
    opacity: 1;
    border-top: 2px solid #3a7bd5;
}
.spice-card p {
    font-size: 0.98rem;
    color: #444;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.2rem;
    margin-top: 0.7rem;
    padding: 0 1rem;
}
footer {
    background: linear-gradient(90deg, #1a2340 60%, #3a7bd5 100%);
    color: #f7fafd;
    text-align: center;
    padding: 1.2rem 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 12px #1a234022;
}
