:root {
    --primary-color: #5d4037;
    --secondary-color: #8d6e63;
    --accent-color: #d7ccc8;
    --dark-color: #212121;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --success: #25d366;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.py { padding: 80px 0; }
.bg-light { background-color: var(--light-color); }

/* Top Bar */
.top-scrolling-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1001;
    overflow: hidden;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 44px; /* Height of top bar */
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    padding: 10px 15px;
    font-weight: 500;
    transition: var(--transition);
}

.main-nav ul li a:hover, .main-nav ul li a.active {
    color: var(--primary-color);
}

/* Hero */
.hero {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
}

.btn-primary { background: var(--primary-color); color: var(--white); border: 2px solid var(--primary-color); }
.btn-primary:hover { background: var(--secondary-color); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); margin-left: 10px; }
.btn-secondary:hover { background: var(--white); color: var(--primary-color); }

/* Grid System */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: var(--transition);
}

.card:hover { transform: translateY(-10px); }
.card img { width: 100%; border-radius: 5px; margin-bottom: 15px; }

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-logo { height: 50px; margin-bottom: 20px; }
.footer-links h4, .footer-contact h4 { margin-bottom: 20px; color: var(--accent-color); }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #bbb; text-decoration: none; transition: var(--transition); }
.footer-links ul li a:hover { color: var(--white); padding-left: 5px; }

.social-links a { color: var(--white); font-size: 1.5rem; margin-right: 15px; }
.footer-bottom { border-top: 1px solid #444; margin-top: 40px; padding-top: 20px; text-align: center; font-size: 0.9rem; color: #888; }

/* WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    color: var(--white);
    padding: 20px 0;
    z-index: 1002;
    display: none;
}

.cookie-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-btns button {
    padding: 8px 20px;
    margin-left: 10px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
}

.btn-accept { background: var(--success); color: white; }
.btn-reject { background: #666; color: white; }

/* Form */
.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Map */
#map { height: 400px; border-radius: 10px; }

/* Responsive */
@media (max-width: 768px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .main-header .container { flex-direction: column; }
    .main-nav ul { margin-top: 20px; }
    .top-bar { display: none; }
}