@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b8860b;
    --primary-dark: #8b6914;
    --secondary: #2c3e50;
    --accent: #d4a574;
    --light: #faf8f5;
    --cream: #f5f0e8;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 0.8rem; }

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    transform: translateY(-100%);
}

header.show-nav {
    transform: translateY(0);
}

.header-inner {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: var(--accent);
    font-size: 1.1rem;
}

.nav-container {
    display: flex;
    justify-content: center;
    padding: 0.4rem 1rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li a {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.7rem;
    border-radius: 20px;
    transition: var(--transition);
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin: 0.8rem 0;
}

.mobile-nav ul li a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08) 0%, rgba(212, 165, 116, 0.05) 100%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    margin-bottom: 0.6rem;
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.9rem;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-content h3 {
    margin-bottom: 0.8rem;
}

.about-content p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.features-section {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
}

.service-card-content {
    padding: 1.2rem;
}

.service-card h4 {
    margin-bottom: 0.5rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonial-author i {
    color: var(--accent);
}

.testimonial-author span {
    font-weight: 600;
    font-size: 0.85rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    text-align: center;
    padding: 3rem 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.2rem;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

.products-section {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card-content {
    padding: 1.2rem;
}

.product-card h4 {
    margin-bottom: 0.4rem;
}

.product-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    padding: 6rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    font-size: 0.8rem;
}

.breadcrumb a {
    color: var(--accent);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

.content-section {
    background: var(--white);
    padding: 3rem 0;
}

.content-section p,
.content-section ul,
.content-section ol {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.content-section h3 {
    margin: 1.5rem 0 0.8rem;
}

.team-section {
    background: var(--cream);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.team-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
}

.team-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.team-card h4 {
    margin-bottom: 0.3rem;
}

.team-card span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-section {
    background: var(--cream);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #1a252f 100%);
    padding: 2rem;
    border-radius: 15px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.contact-info-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-size: 0.85rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 2px solid var(--cream);
    border-radius: 10px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
    padding: 2rem;
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.error-content h2 {
    margin-bottom: 1rem;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 2rem;
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thankyou-content h1 {
    margin-bottom: 0.8rem;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.policy-section {
    background: var(--white);
    padding: 3rem 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin: 2rem 0 1rem;
    font-size: 1.4rem;
}

.policy-content h3 {
    margin: 1.5rem 0 0.8rem;
    font-size: 1.2rem;
}

.policy-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-content li {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

footer {
    background: var(--secondary);
    color: var(--white);
    padding: 1.5rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo i {
    color: var(--accent);
}

.footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    color: var(--white);
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.privacy-popup p {
    font-size: 0.8rem;
    margin-bottom: 0;
    flex: 1;
}

.privacy-popup a {
    color: var(--accent);
}

.privacy-popup-buttons {
    display: flex;
    gap: 0.5rem;
}

.privacy-popup .btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.workshop-details {
    background: var(--white);
}

.workshop-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.workshop-info-item {
    background: var(--cream);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.workshop-info-item i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.workshop-info-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.workshop-info-item p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.process-section {
    background: var(--cream);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 0.8rem;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.value-card {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--light);
    border-radius: 12px;
}

.value-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.value-card h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.benefits-list i {
    color: var(--primary);
    margin-top: 0.2rem;
}

@media (max-width: 992px) {
    html { font-size: 14px; }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .workshop-info,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        justify-content: space-between;
    }
    
    .nav-container {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: flex;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    html { font-size: 13px; }
    
    .features-grid,
    .testimonials-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .workshop-info,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }
    
    .breadcrumb {
        flex-wrap: wrap;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
}
