/* Global Reset and Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Vibrant Art Blues */
    --primary-blue: #00b4d8;
    --dark-blue: #0077b6;
    --text-color: #2D2D2D;
    --card-bg: rgba(255, 255, 255, 0.9);
    --primary-font: 'Quicksand', sans-serif;
    --heading-font: 'Fredoka', sans-serif;
}

body {
    /* Multi-color blend simulating watercolor pigment washes across the page */
    background: linear-gradient(135deg, #caf0f8 0%, #e0f2fe 35%, #f3e8ff 70%, #ffedd5 100%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--primary-font);
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 1.2rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    color: #333;
}

.header-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.header-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.15) 0%, rgba(144, 224, 239, 0.2) 100%);
    backdrop-filter: blur(2px);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 2px dashed rgba(0, 180, 216, 0.2);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-family: var(--heading-font);
    font-size: 2.6rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #334155;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.5);
}

/* Product Gallery Grid */
.gallery-container {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-title {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1e3a8a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 3rem;
}

/* Dynamic Product Card */
.product-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image-wrapper {
    position: relative;
    padding-top: 100%;
}

.product-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    background: white;
}

.product-info h4 {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-info p {
    font-size: 0.95rem;
    color: #555;
}

/* New Socials Feature Section */
.socials-feature-section {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    padding: 5rem 2rem;
    text-align: center;
    margin-top: 6rem;
    border-top: 2px dashed rgba(147, 51, 234, 0.15);
}

.socials-content {
    max-width: 700px;
    margin: 0 auto;
}

.socials-content h3 {
    font-family: var(--heading-font);
    font-size: 2.2rem;
    color: #4c1d95;
    margin-bottom: 1rem;
}

.socials-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

.social-buttons-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    background: white;
    color: #4c1d95;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid rgba(147, 51, 234, 0.2);
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #4c1d95;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.25);
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 2rem;
    background-color: #1e293b;
    color: #fff;
}