@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6B5C;
    --secondary: #D4A574;
    --accent: #E8D5C4;
    --dark: #3D2B1F;
    --light: #FDF8F5;
    --cream: #F5EDE6;
    --sage: #9CAF88;
    --dusty-rose: #C9A9A6;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Quicksand', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 10px 0;
    border-bottom: 1px solid var(--accent);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--sage);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--dark);
}

.header-contact-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

nav {
    width: 100%;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--accent);
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

nav a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover {
    color: var(--primary);
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(61, 43, 31, 0.4), rgba(61, 43, 31, 0.5));
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--light);
    padding: 40px 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--sage);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--light);
}

section {
    padding: 50px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 30px;
}

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(61, 43, 31, 0.1);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 0.9rem;
}

.features-list {
    margin-top: 20px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.features-list i {
    color: var(--sage);
    font-size: 0.9rem;
}

.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--cream);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 43, 31, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.service-icon i {
    font-size: 1.2rem;
    color: var(--light);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.8rem;
    color: var(--primary);
}

.products-section {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(61, 43, 31, 0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.75rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sage);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    color: var(--light);
    padding: 40px 20px;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--light);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--sage);
    color: var(--light);
}

.testimonials-section {
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--cream);
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-card i {
    font-size: 1.5rem;
    color: var(--dusty-rose);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 15px;
}

.testimonial-author {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    font-size: 0.9rem;
}

.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--accent) 100%);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.75rem;
    color: var(--primary);
}

.breadcrumb a:hover {
    color: var(--sage);
}

.catalog-section {
    background: var(--light);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.catalog-card {
    background: var(--cream);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
}

.catalog-image {
    height: 220px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-info {
    padding: 20px;
}

.catalog-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.catalog-info p {
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.catalog-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 15px;
}

.services-detail-section {
    background: var(--cream);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.services-detail-content h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.services-detail-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.services-list {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
}

.services-list h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--accent);
    font-size: 0.85rem;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list i {
    color: var(--sage);
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 30px;
    border-radius: 10px;
    color: var(--light);
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--sage);
    margin-top: 3px;
}

.contact-item-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-text p {
    font-size: 0.8rem;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px;
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    border: 1px solid var(--accent);
    border-radius: 5px;
    background: var(--light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sage);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--sage);
    text-decoration: underline;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin: 0 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.error-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
}

.error-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--sage);
    margin-bottom: 10px;
}

.error-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.error-content p {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.thankyou-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

.thankyou-content i {
    font-size: 4rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.thankyou-content p {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.policy-section {
    background: var(--light);
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-content li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    list-style: disc;
}

footer {
    background: var(--dark);
    color: var(--light);
    padding: 25px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo span {
    color: var(--sage);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    color: var(--accent);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--sage);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 0.7rem;
    color: var(--accent);
}

.copyright span {
    color: var(--sage);
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 0.7rem;
    color: var(--accent);
}

.policy-links a:hover {
    color: var(--sage);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 15px 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.8rem;
    flex: 1;
}

.cookie-content a {
    color: var(--sage);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 0.75rem;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--sage);
    color: var(--light);
}

.cookie-btn.decline {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--accent);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

.process-section {
    background: var(--light);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--accent);
}

.process-step {
    text-align: center;
    position: relative;
    flex: 1;
    padding: 0 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light);
    position: relative;
    z-index: 1;
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.process-step p {
    font-size: 0.75rem;
    color: var(--primary);
}

.gallery-section {
    background: var(--cream);
    padding: 50px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 180px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .about-grid,
    .services-detail-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 25px;
    }
    
    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-contact {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    nav {
        display: none;
        margin-top: 10px;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    section {
        padding: 35px 0;
    }
    
    .hero {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .policy-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-content h1 {
        font-size: 1.4rem;
    }
    
    .btn {
        padding: 8px 18px;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}
