@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #e81c6d; /* Pink from Chamak Logo */
    --primary-light: #f9d8e5; /* Light Pink */
    --secondary: #333333; /* Dark gray for secondary */
    --accent: #d41460; /* Darker pink for accent */
    --text-main: #1f2937;
    --text-muted: #6b7280;
    --bg-main: #fafafa;
    --card-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(232, 28, 109, 0.1);
    --shadow-soft: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-hover: 0 20px 25px -5px rgba(232, 28, 109, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html, body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(232, 28, 109, 0.39);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 28, 109, 0.4);
}

.btn-secondary {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 4px 14px 0 rgba(232, 28, 109, 0.15);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 28, 109, 0.25);
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

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

.logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-main);
}

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

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, #e0f2fe 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Products Grid */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    transition: all 0.4s ease;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 1.5rem auto;
    transition: transform 0.5s ease;
}

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

.product-category {
    font-size: 0.875rem;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: var(--text-main);
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Footer */
footer {
    background: var(--primary-light);
    color: var(--brand-dark);
    padding: 3rem 1rem 1.5rem 1rem;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
}

.footer-col p, .footer-col ul {
    color: var(--text-muted);
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid #e5e7eb;
    color: var(--text-muted);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* General Typography */
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.75rem !important; }
    
    /* Layout Adjustments */
    .container { padding: 0 1rem; }
    
    /* Hero Sections */
    .hero { padding-top: 5rem; text-align: center; }
    .hero h1 { font-size: 2.5rem !important; }
    .hero-content { padding: 2rem 1rem !important; }
    
    /* Grids & Flex */
    .product-grid, .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .product-card { padding: 0.5rem !important; }
    .product-image { width: 100% !important; height: auto !important; margin-bottom: 0.5rem !important; }
    .product-title { font-size: 0.7rem !important; margin-bottom: 0.25rem !important; }
    .product-desc { font-size: 0.5rem !important; margin-bottom: 0.5rem !important; line-height: 1.2 !important; }
    .product-card .btn { padding: 0.25rem 0.5rem !important; font-size: 0.6rem !important; }
    
    .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; text-align: left; }
    .footer-col:first-child { grid-column: 1 / -1; text-align: center; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 0.5rem; }
    .footer-col:first-child h3 { justify-content: center; }
    
    footer { padding: 1.5rem 1rem 1rem 1rem; }
    .footer-col h3 { font-size: 0.8rem; margin-bottom: 0.75rem; }
    .footer-col h3 svg { width: 14px; height: 14px; }
    .footer-col p, .footer-col ul { font-size: 0.6rem; line-height: 1.4; }
    .footer-col ul li { margin-bottom: 0.4rem; }
    .footer-bottom { font-size: 0.55rem; padding-top: 1rem; text-align: center; }
    
    /* Utility Classes */
    .hide-mobile { display: none !important; }
    
    /* Forms */
    form.contact-form .glass { padding: 1.5rem !important; }
    .contact-form input, .contact-form textarea, .contact-form button { width: 100% !important; }
}
