/* CSS Variables */
        :root {
            --primary: #3e2723;
            --secondary: #8d6e63;
            --accent: #ff9800;
            --light: #efebe9;
            --dark: #1b0000;
            --white: #ffffff;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            background-color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent);
            color: var(--white);
            border: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        /* Header */
        header {
            background-color: var(--primary);
            color: var(--white);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            font-weight: 500;
            position: relative;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: var(--transition);
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }
        
        /* Page Styles */
        .page {
            min-height: 100vh;
            padding: 80px 0;
        }
        
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/header.png') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
        }

         .legal {
            min-height: 300px;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/header.png') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .legal h1 
        {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
        }
        
        /* Coffee Grid */
        .coffee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .coffee-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .coffee-card:hover {
            transform: translateY(-10px);
        }
        
        .coffee-img {
            height: 250px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .coffee-1 { background-image: url('images/image3.png'); }
        .coffee-2 { background-image: url('images/image4.png'); }
        .coffee-3 { background-image: url('images/image5.png'); }
        .coffee-4 { background-image: url('images/image6.png'); }
        .coffee-5 { background-image: url('images/image7.png'); }
        .coffee-6 { background-image: url('images/image8.png'); }
        
        .coffee-info {
            padding: 20px;
        }
        
        .coffee-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .price {
            font-weight: 700;
            color: var(--accent);
            font-size: 1.3rem;
            margin-top: 10px;
        }
        
        /* Feature Section */
        .features {
            background: var(--white);
            padding: 80px 0;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            text-align: center;
            padding: 30px;
        }
        
        .feature-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        /* Page Content Styles */
        .page-content {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            line-height: 1.8;
        }
        
        .page-content h2 {
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .page-content h3 {
            margin: 30px 0 15px;
            color: var(--secondary);
        }
        
        .page-content p {
            margin-bottom: 15px;
        }
        
        .page-content ul {
            margin: 20px 0 20px 30px;
        }
        
        .contact-info {
            margin-top: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-item i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .form {
    max-width: 600px;
    margin-top: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #6c63ff;
    outline: none;
}
.btn {
    padding: 12px 24px;
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.btn:hover {
    opacity: 0.9;
}
        
        /* Footer */
        footer {
            background: var(--primary);
            color: var(--white);
            padding: 50px 0 20px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col ul li a {
            opacity: 0.8;
            transition: var(--transition);
        }
        
        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .social-links {
            display: flex;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transform: translateY(-100%);
            transition: var(--transition);
        }
        
        .mobile-nav.active {
            transform: translateY(0);
        }
        
        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }
        
        .mobile-nav ul li {
            margin: 20px 0;
        }
        
        .mobile-nav ul li a {
            font-size: 1.5rem;
            font-weight: 500;
        }
        
        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            nav ul {
                display: none;
            }
            
            .hero h1 {
                font-size: 2.4rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .page-content {
                padding: 25px;
            }
        }
         .cookie-bar {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 300px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        opacity: 0; /* Start hidden */
        pointer-events: none; /* Start disabled */
        transition: opacity 0.3s ease, pointer-events 0.3s ease;
    }


    .cookie-bar__message {
        font-size: 14px;
        margin-right: 10px;
        flex-grow: 1;
    }


    .cookie-bar__buttons {
        display: flex;
        gap: 10px;
    }


    .cookie-bar__btn {
        padding: 8px 12px;
        background-color: #ff9800;
        border: none;
        color: white;
        font-size: 14px;
        border-radius: 4px;
        cursor: pointer;
    }


    .cookie-bar__btn:hover {
        background-color: #ff9800;
    }


    .cookie-bar__link {
        font-size: 14px;
        color: #ff9800;
        text-decoration: none;
    }


    .cookie-bar__link:hover {
        text-decoration: underline;
    }
