:root {
    /* Brand Colors */
    --color-magenta-blue: #948DB6; /* 148,141,182 */
    --color-grayish-blue: #A8B8C7; /* 168,184,199 */
    --color-muted-purple: #C7B1C0; /* 199,177,192 */
    --color-pale-chestnut: #D7B5B5; /* 215,181,181 */
    --color-light-pink: #DDA5BB; /* 221,165,187 */
    --color-cyan-green: #B1C6BF; /* 177,198,191 */
    --color-soft-blue: #658DBA; /* 101,141,186 */

    /* Gradients */
    --gradient-1: linear-gradient(135deg, var(--color-magenta-blue), var(--color-grayish-blue));
    --gradient-2: linear-gradient(135deg, var(--color-light-pink), var(--color-muted-purple));
    --gradient-3: linear-gradient(135deg, var(--color-cyan-green), var(--color-grayish-blue));
    
    /* Backgrounds */
    --bg-light: #f9f8fa;
    --bg-dark: #121015;
    --text-main: #33313a;
    --text-light: #6c6a73;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    z-index: 100;
    transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(249, 248, 250, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--color-magenta-blue);
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    display: none;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
    animation: floatImg 20s ease-in-out infinite alternate;
}

@keyframes floatImg {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(249,248,250,0.8) 0%, rgba(249,248,250,0.1) 80%);
    z-index: -1;
}

.inner-page-header {
    padding: 12rem 4rem 4rem;
    text-align: center;
    background: var(--gradient-1);
    color: white;
}
.inner-page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 1rem;
}
.page-content {
    padding: 6rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
}
.contact-info, .contact-form-container {
    flex: 1;
}
.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-magenta-blue);
}
.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-grayish-blue);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-magenta-blue);
}
.form-group textarea {
    height: 150px;
    resize: vertical;
}
.submit-btn {
    background: var(--gradient-1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
}

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(148, 141, 182, 0.3);
}

/* Collections Sections */
.collection-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-magenta-blue);
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(148, 141, 182, 0.15);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.placeholder-img, .actual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .placeholder-img,
.product-card:hover .actual-img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

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

.product-price {
    display: inline-block;
    font-weight: 600;
    color: var(--color-soft-blue);
    font-size: 1.1rem;
}

/* Banner Section */
.banner-section {
    padding: 6rem 2rem;
    background: var(--gradient-2);
    text-align: center;
    color: white;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Craftsmanship Section */
.craftsmanship-section {
    padding: 8rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}
.craft-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.craft-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.craft-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.craft-text {
    flex: 1;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 4rem 8rem;
    background: var(--bg-light);
    max-width: 1400px;
    margin: 0 auto;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.testimonial-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}
.stars {
    color: var(--color-light-pink);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
}

/* Newsletter */
.newsletter-section {
    padding: 6rem 2rem;
    background: var(--gradient-1);
    text-align: center;
}
.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-family: var(--font-body);
    outline: none;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 6rem 4rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    color: white;
}

.footer-content p {
    color: var(--color-grayish-blue);
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .craft-container {
        flex-direction: column;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .nav-links {
        display: none; /* simple mobile fix */
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-section, .craftsmanship-section, .testimonials-section {
        padding: 5rem 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
