<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Retro Style CSS */

/* Import retro-inspired fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&amp;family=Poppins:wght@300;400;600;700&amp;display=swap');

:root {
    /* Retro color palette */
    --primary-color: #7AAC6C;
    --secondary-color: #EEC170;
    --accent-color: #E8765B;
    --text-color: #493742;
    --light-text: #795E75;
    --background-color: #FFFBF1;
    --light-background: #FCF5E5;
    --border-color: #D9C5B4;
    
    /* Typography */
    --heading-font: 'Playfair Display', serif;
    --font-family: 'Poppins', sans-serif;
    
    /* Design elements */
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(73, 55, 66, 0.1);
    --transition: all 0.3s ease;
    
    /* Retro patterns and textures */
    --pattern: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237AAC6C' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Global Retro Styling */
body {
    background-color: var(--background-color);
    background-image: var(--pattern);
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
}

/* Button Retro Styling */
.btn {
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    padding: 12px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.btn:hover:before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 0 darken(var(--primary-color), 10%);
}

.btn-primary:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 darken(var(--primary-color), 10%);
}

/* Header Retro Styling */
header {
    background-color: var(--background-color);
    border-bottom: 3px solid var(--border-color);
}

.logo span {
    font-family: var(--heading-font);
    font-weight: 900;
    letter-spacing: 1px;
}

nav ul li a {
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

/* Hero Section Retro Styling */
.hero {
    background-color: var(--light-background);
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(122, 172, 108, 0.15);
    z-index: 0;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: rgba(232, 118, 91, 0.1);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Section Styling */
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Service Cards Retro Styling */
.service-card {
    border: 2px solid var(--border-color);
    background-color: var(--background-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(122, 172, 108, 0.15);
    z-index: -1;
}

.service-card:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(232, 118, 91, 0.1);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(73, 55, 66, 0.1);
}

/* Menu Category Retro Styling */
.menu-category {
    border: 2px solid var(--border-color);
    background-color: var(--background-color);
    transition: all 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(73, 55, 66, 0.1);
}

.menu-category h3 {
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-align: center;
}

.menu-item h4 {
    color: var(--accent-color);
    font-weight: 700;
}

/* Blog Cards Retro Styling */
.blog-card {
    border: 2px solid var(--border-color);
    background-color: var(--background-color);
    transition: all 0.4s ease;
}

.blog-card img {
    border-bottom: 2px solid var(--border-color);
}

.blog-card h3 {
    color: var(--text-color);
    transition: all 0.3s ease;
}

.blog-card:hover h3 {
    color: var(--accent-color);
}

/* Testimonial Retro Styling */
.testimonial-content {
    border: 2px solid var(--border-color);
    background-color: var(--background-color);
    box-shadow: 5px 5px 0 var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translate(-5px, -5px);
    box-shadow: 10px 10px 0 var(--border-color);
}

.testimonial-author h4 {
    color: var(--accent-color);
}

/* Subscription Form Retro Styling */
form {
    border: 2px solid var(--border-color);
    background-color: var(--background-color);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

form:before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(122, 172, 108, 0.15);
    z-index: -1;
}

form:after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(232, 118, 91, 0.1);
    z-index: -1;
}

.form-group input {
    border: 2px solid var(--border-color);
    background-color: var(--light-background);
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(122, 172, 108, 0.2);
}

/* Footer Retro Styling */
footer {
    background-color: var(--text-color);
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

/* Cookie Consent Retro Styling */
.cookie-consent {
    border-top: 3px solid var(--accent-color);
}

.cookie-settings-panel {
    border: 2px solid var(--border-color);
}

/* Retro Animations */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

/* Additional Retro Elements */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-background);
    border: 2px solid var(--border-color);
    margin-bottom: 20px;
}

/* Retro Media Queries Adjustments */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .testimonial-content {
        box-shadow: 3px 3px 0 var(--border-color);
    }
    
    .testimonial-content:hover {
        box-shadow: 6px 6px 0 var(--border-color);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }
}
</pre></body></html>