@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Lato:wght@300;400;700&display=swap');

        :root {
            --primary-color: #8C6A48;
            --secondary-color: #E2DCCF;
            --accent-color: #B28F67;
            --text-color: #3B3A36;
            --light-text-color: #F8F8F8;
            --bg-color: #2D3941;
            --header-bg-color: rgba(45, 57, 65, 0.9);
            --transition-speed: 0.3s;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cinzel Decorative', serif;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        p {
            font-size: 1.1rem;
            color: var(--light-text-color);
        }

        a {
            text-decoration: none;
            color: var(--accent-color);
            transition: color var(--transition-speed);
        }

        a:hover {
            color: var(--secondary-color);
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--header-bg-color);
            backdrop-filter: blur(5px);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .logo {
            font-family: 'Cinzel Decorative', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .logo a {
            color: var(--secondary-color);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            font-weight: 700;
            color: var(--secondary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color var(--transition-speed);
        }

        .nav-links a:hover {
            color: var(--accent-color);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width var(--transition-speed) ease-in-out;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .burger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .burger span {
            width: 25px;
            height: 3px;
            background-color: var(--secondary-color);
            transition: transform var(--transition-speed);
        }
        

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--light-text-color);
            background-image: url('../img/06.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 800px;
            padding: 2rem;
            animation: fadeIn 1s ease-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--secondary-color);
        }

        .cta-button {
            background-color: var(--accent-color);
            color: var(--bg-color);
            padding: 1rem 2.5rem;
            border-radius: 5px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
        }

        .cta-button:hover {
            background-color: var(--primary-color);
            color: var(--light-text-color);
            transform: translateY(-3px);
        }

        /* General Section Styling */
        section {
            padding: 6rem 2rem;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--primary-color);
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            margin: 10px auto 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        /* About Section */
        .about {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }
        
        .about .section-title {
            color: var(--text-color);
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .about-image, .about-content {
            flex: 1;
            min-width: 300px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about-content h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .about p {
            color: var(--text-color);
        }

        /* Products Section */
        .products {
            background-color: var(--bg-color);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .product-card {
            background-color: var(--header-bg-color);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: transform 0.5s ease;
        }

        .product-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .product-content {
            padding: 2rem;
        }

        .product-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .product-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        /* Prices Section */
        .prices {
            background-color: var(--secondary-color);
            color: var(--text-color);
            text-align: center;
        }

        .prices .section-title {
            color: var(--text-color);
        }

        .prices p {
            color: var(--text-color);
            margin-bottom: 2rem;
        }

        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            justify-content: center;
        }

        .price-card {
            background-color: var(--light-text-color);
            padding: 3rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform var(--transition-speed);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .price-card h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .price-card .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .price-card ul {
            list-style: none;
            text-align: left;
            margin-bottom: 2rem;
        }

        .price-card li {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #ccc;
            color: var(--text-color);
        }

        .price-card li:last-child {
            border-bottom: none;
        }

        /* Gallery Section */
        .gallery {
            background-color: var(--bg-color);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            animation: fadeUp 1s ease-out;
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Feedback Section */
        .feedback {
            background-color: var(--secondary-color);
            color: var(--text-color);
        }

        .feedback .section-title {
            color: var(--text-color);
        }

        .slider-container {
            position: relative;
            max-width: 800px;
            margin: auto;
            overflow: hidden;
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slide {
            min-width: 100%;
            box-sizing: border-box;
            text-align: center;
            padding: 2rem;
            background-color: var(--light-text-color);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .slide p {
            font-style: italic;
            margin-bottom: 1rem;
            color: var(--text-color);
        }

        .slide-author {
            font-weight: 700;
            color: var(--primary-color);
        }

        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .prev, .next {
            cursor: pointer;
            background-color: var(--primary-color);
            color: var(--light-text-color);
            padding: 1rem;
            border-radius: 50%;
            user-select: none;
            transition: background-color var(--transition-speed);
        }

        .prev:hover, .next:hover {
            background-color: var(--accent-color);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--bg-color);
        }

        .faq-item {
            margin-bottom: 1rem;
            background-color: var(--header-bg-color);
            border-radius: 5px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 700;
            color: var(--accent-color);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px; /* Adjust as needed */
            padding: 0 1.5rem 1.5rem;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question::after {
            content: '-';
            transform: rotate(180deg);
        }

        /* Contact Form */
        .contact-form-container {
            max-width: 600px;
            margin: 4rem auto;
            background-color: var(--header-bg-color);
            padding: 3rem;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }
        
        .contact-form-container h3 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 2rem;
        }

        .contact-form-container form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            color: var(--light-text-color);
            margin-bottom: 0.5rem;
        }

        .form-group input {
            padding: 1rem;
            border-radius: 5px;
            border: 1px solid var(--accent-color);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light-text-color);
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 5px var(--primary-color);
        }

        .submit-button {
            background-color: var(--accent-color);
            color: var(--bg-color);
            padding: 1rem;
            border: none;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
        }
        
        .submit-button:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            background-color: var(--header-bg-color);
            color: var(--light-text-color);
            padding: 3rem 2rem;
            text-align: center;
        }

        .footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
            text-align: left;
        }

        .footer-section h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--accent-color);
        }

        .footer-section p, .footer-section a {
            color: var(--light-text-color);
            font-size: 1rem;
            line-height: 1.8;
        }

        .footer-section a:hover {
            text-decoration: underline;
        }

        .footer-bottom {
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Disclaimer */
        .disclaimer {
            background-color: var(--primary-color);
            color: var(--bg-color);
            padding: 1rem 2rem;
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .disclaimer p {
            color: var(--bg-color);
        }

        /* Cookie Banner */
        .cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--header-bg-color);
            color: var(--light-text-color);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.8s ease-in-out;
        }
        
        .cookie-banner.visible {
            transform: translateY(0);
        }
        
        .cookie-banner-text {
            flex: 1;
        }

        .cookie-banner-text p {
            margin: 0;
            color: var(--light-text-color);
        }
        
        .cookie-banner-buttons {
            display: flex;
            gap: 1rem;
        }

        .cookie-button {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 700;
        }

        .cookie-accept {
            background-color: var(--accent-color);
            color: var(--bg-color);
        }
        
        .cookie-accept:hover {
            background-color: var(--primary-color);
        }

        .cookie-link {
            color: var(--accent-color);
            margin-left: 0.5rem;
        }

        .cookie-link:hover {
            text-decoration: underline;
        }

        /* Modals and Popups */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s ease;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: var(--bg-color);
            color: var(--light-text-color);
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            max-width: 500px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .modal-content h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .close-button {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 2rem;
            color: var(--accent-color);
            cursor: pointer;
        }

        .visible{
            opacity: 1;
            transform: translateY(0);
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .header {
                padding: 1rem;
            }

            .section-title{
                font-size: 2em;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                width: 70%;
                height: 100vh;
                background-color: var(--header-bg-color);
                flex-direction: column;
                justify-content: center;
                gap: 3rem;
                transform: translateX(100%);
                transition: transform 0.5s ease-in-out;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .burger {
                display: flex;
            }
            .about .container {
                flex-direction: column;
            }
            .about-image {
                order: -1;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
            .footer .container {
                flex-direction: column;
            }
        }

