@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

/* ===== Global Styles ===== */
:root {
    --lightPurple: #876ca0;
    --burntOrange: #ad6650;
    --muteGreen: #f6f5ea;
}

body {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    box-sizing: border-box;
}

#bodyWrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== Main Body Styles ===== */
#serviceMenuHeroContainer {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.amikaLogoGif {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Products Section */
.products-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.products-title {
    text-align: center;
    color: var(--lightPurple);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-decoration: underline;
    text-decoration: none;
}

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

.product-card {
    background-color: var(--muteGreen);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    color: var(--lightPurple);
    font-size: 1.8rem;
    margin: 0 0 1rem 0;
    text-align: center;
}

.product-description {
    color: var(--burntOrange);
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}

.product-description h3 {
    margin-top: 1.5rem;
    font-size: 2.5rem;
    color: var(--lightPurple);
}

/* ==== Tablet Queries ==== */
@media (min-width: 601px) and (max-width: 1024px) {
/* ==== Main Body ==== */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ==== Mobile Queries ==== */
@media (max-width: 600px) {
    /* ==== Main Body ==== */
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 1.1rem;
    }
}