@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8B4B6B;
    --primary-dark: #6A3A52;
    --secondary: #E8D5B7;
    --accent: #D4A574;
    --dark: #2C2C2C;
    --light: #FAF7F2;
    --text: #4A4A4A;
    --white: #FFFFFF;
    --shadow: rgba(139, 75, 107, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.4s ease, background 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    gap: 5px;
    transition: all 0.3s ease;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
}

.nav-mobile ul {
    text-align: center;
}

.nav-mobile li {
    margin: 15px 0;
}

.nav-mobile a {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
}

.nav-mobile a:hover {
    color: var(--secondary);
}

.hero {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--light) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow);
}

.hero-image img {
    width: 100%;
    object-fit: cover;
}

section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text);
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.features-section {
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 20px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: var(--text);
}

.workshops-section {
    background: var(--white);
}

.workshop-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.workshop-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.workshop-card:hover {
    box-shadow: 0 15px 40px var(--shadow);
}

.workshop-image {
    height: 180px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-content {
    padding: 20px;
}

.workshop-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.workshop-content p {
    font-size: 13px;
    margin-bottom: 15px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--secondary);
}

.workshop-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.testimonials-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 13px;
}

.cta-section {
    background: var(--secondary);
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 20px;
    font-size: 14px;
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.policy-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.policy-links a:hover {
    color: var(--secondary);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.active {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 13px;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.products-section {
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-image {
    height: 200px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--primary);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 13px;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 30px;
    border-radius: 15px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 18px;
    color: var(--secondary);
    width: 20px;
}

.contact-item h4 {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--secondary);
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-wrapper {
    height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.policy-section {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--dark);
}

.policy-content h3 {
    font-size: 18px;
    margin: 25px 0 12px;
}

.policy-content p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 10px 0 15px 20px;
}

.policy-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-update {
    font-size: 13px;
    color: var(--text);
    font-style: italic;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 15px 50px;
    background: var(--light);
}

.error-content h1 {
    font-size: 100px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 400px;
}

.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 15px 50px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--light) 100%);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 15px;
    margin-bottom: 25px;
    color: var(--text);
}

.about-team-section {
    background: var(--light);
}

.team-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-feature {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.team-feature i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 15px;
}

.team-feature h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.team-feature p {
    font-size: 13px;
}

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.value-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.value-item i {
    font-size: 24px;
    color: var(--primary);
}

.value-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.value-item p {
    font-size: 13px;
}

.workshop-detail-section {
    background: var(--white);
}

.workshop-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.workshop-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

.workshop-detail-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.workshop-detail-content p {
    font-size: 14px;
    margin-bottom: 15px;
}

.workshop-highlights {
    display: grid;
    gap: 12px;
    margin: 20px 0;
}

.workshop-highlight {
    display: flex;
    gap: 12px;
    align-items: center;
}

.workshop-highlight i {
    color: var(--primary);
    font-size: 16px;
}

.workshop-highlight span {
    font-size: 14px;
}

.workshop-pricing {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    margin-top: 20px;
}

.workshop-pricing h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.price-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.schedule-section {
    background: var(--light);
}

.schedule-list {
    display: grid;
    gap: 15px;
}

.schedule-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.schedule-time {
    background: var(--primary);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.schedule-time span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}

.schedule-info h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

.schedule-info p {
    font-size: 13px;
    color: var(--text);
}

@media (min-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero p {
        margin-left: 0;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 34px;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .workshop-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .team-features {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .workshop-detail {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .section-header h2 {
        font-size: 38px;
    }
}
