﻿:root {
    --gold: #ffbb02;
    --pink: #debfaa;
    --brown: #6e4a32;
    --light-bg: #f5f0eb;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --shadow: 0 8px 16px rgba(110, 74, 50, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(110, 74, 50, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--brown);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--brown);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--light-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 187, 2, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero-content {
    flex: 1;
    z-index: 1;
    max-width: 600px;
    padding: 0 40px;
}

.hero-title {
    color: var(--brown);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--brown);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    z-index: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(110, 74, 50, 0.2), -20px -20px 60px rgba(255, 255, 255, 0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--brown);
    box-shadow: 8px 8px 16px rgba(110, 74, 50, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.btn-primary:hover {
    background-color: #e5a902;
    transform: translateY(-2px);
    box-shadow: 10px 10px 20px rgba(110, 74, 50, 0.25), -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.btn-secondary {
    background-color: var(--brown);
    color: var(--white);
    box-shadow: 8px 8px 16px rgba(110, 74, 50, 0.2), -8px -8px 16px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background-color: #5a3a26;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.95rem;
}

/* Neumorphism Cards */
.neuro-card {
    background: var(--light-bg);
    border-radius: 20px;
    box-shadow: 12px 12px 24px rgba(110, 74, 50, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.9);
    padding: 2rem;
    transition: all 0.3s;
}

.neuro-card:hover {
    box-shadow: 16px 16px 32px rgba(110, 74, 50, 0.2), -16px -16px 32px rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--brown);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Designer Section */
.designer-section {
    padding: 80px 20px;
}

.designer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.designer-card {
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    box-shadow: inset 6px 6px 12px rgba(110, 74, 50, 0.1), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.designer-card h3 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.designer-card p {
    color: var(--text-dark);
    opacity: 0.85;
}

.cta-box {
    text-align: center;
    padding: 3rem;
}

.cta-box h3 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--brown);
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 30px rgba(110, 74, 50, 0.2), -15px -15px 30px rgba(255, 255, 255, 0.8);
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.stat-label {
    color: var(--brown);
    opacity: 0.8;
}

/* Shop Section */
.shop-section {
    padding: 80px 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.product-card {
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-info h3 {
    color: var(--brown);
    margin-bottom: 0.8rem;
}

.product-info p {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

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

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.text-center {
    text-align: center;
}

/* Selection Guide */
.selection-guide {
    padding: 80px 20px;
    background-color: var(--white);
}

.guide-steps {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    color: var(--brown);
    margin-bottom: 0.8rem;
}

.step-content p {
    color: var(--text-dark);
    opacity: 0.85;
}

.guide-cta {
    text-align: center;
    padding: 2.5rem;
}

/* Articles Section */
.articles-section {
    padding: 80px 20px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.article-card {
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.article-content h3 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.article-excerpt {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 1rem;
}

.article-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.article-link:hover {
    color: var(--brown);
}

/* Rules Section */
.rules-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.rules-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
}

.rules-content h2 {
    text-align: center;
    color: var(--brown);
    margin-bottom: 3rem;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
}

.rule-item {
    text-align: center;
}

.rule-item svg {
    margin-bottom: 1rem;
}

.rule-item h3 {
    color: var(--brown);
    margin-bottom: 0.8rem;
}

.rule-item p {
    color: var(--text-dark);
    opacity: 0.85;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    text-align: center;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: var(--brown);
}

.testimonial-author span {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background-color: var(--brown);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--brown);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    background-color: var(--gold);
    color: var(--brown);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Contact Page */
.contact-hero {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--pink) 0%, var(--light-bg) 100%);
}

.contact-hero h1 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    box-shadow: inset 6px 6px 12px rgba(110, 74, 50, 0.1), inset -6px -6px 12px rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--brown);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-dark);
    opacity: 0.85;
}

.info-content a {
    color: var(--gold);
    text-decoration: none;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 15px 15px 30px rgba(110, 74, 50, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.8);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--brown);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--light-bg);
    color: var(--text-dark);
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s;
    box-shadow: inset 4px 4px 8px rgba(110, 74, 50, 0.1), inset -4px -4px 8px rgba(255, 255, 255, 0.9);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: inset 2px 2px 4px rgba(110, 74, 50, 0.05), inset -2px -2px 4px rgba(255, 255, 255, 0.9);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-container {
    margin-top: 4rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    box-shadow: 15px 15px 30px rgba(110, 74, 50, 0.15), -15px -15px 30px rgba(255, 255, 255, 0.9);
}

/* Success Page */
.success-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-content {
    text-align: center;
    max-width: 600px;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 50%;
    box-shadow: 12px 12px 24px rgba(110, 74, 50, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.9);
}

.success-content h1 {
    color: var(--brown);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 2rem;
}

/* Product Gallery */
.product-gallery {
    padding: 60px 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Policy Pages */
.policy-page {
    padding: 100px 20px 60px;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 15px 15px 30px rgba(110, 74, 50, 0.1), -15px -15px 30px rgba(255, 255, 255, 0.8);
}

.policy-content h1 {
    color: var(--brown);
    margin-bottom: 2rem;
}

.policy-content h2 {
    color: var(--brown);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .hero-content {
        padding: 0;
        margin-bottom: 3rem;
    }

    .about-content {
        flex-direction: column;
    }

    .stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        min-width: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid,
    .articles-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .designer-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
    }
}