/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Dancing+Script:wght@600&display=swap');

:root {
    --primary-color: #6FA49E; /* Muted Teal */
    --secondary-color: #E6B151; /* Golden Ochre */
    --accent-color: #D77A77; /* Soft Rose */
    --bg-color: #FDFBF7; /* Creamy White */
    --text-color: #4A4A4A;
    --heading-color: #2D3436;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, .brand-logo {
    color: var(--heading-color);
}

.handwritten {
    font-family: 'Dancing Script', cursive;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: var(--white);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--primary-color);
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Hero / Intro */
.intro-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, var(--bg-color));
}

.intro-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.intro-section p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #777;
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.product-price {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #5a8a85;
}

/* Tutorials List */
.tutorial-card {
    display: flex;
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tutorial-img {
    width: 30%;
    min-width: 250px;
    object-fit: cover;
}

.tutorial-content {
    padding: 2rem;
}

/* Contact Form */
.contact-container {
    max-width: 600px;
    margin: 4rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

/* Footer */
footer {
    background: #fff;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.social-links a {
    color: #ccc;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        display: none; /* Hide default nav */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }
    
    .intro-section h1 {
        font-size: 2rem;
    }
    
    .tutorial-card {
        flex-direction: column;
    }
    
    .tutorial-img {
        width: 100%;
    }
}
