:root {
    --primary: #1a2a44; /* Navy Blue */
    --secondary: #8b5a2b; /* Wood Brown */
    --accent: #f4f1ea; /* Cream/Off-white */
    --dark: #333333;
    --light: #ffffff;
    --grey: #f4f4f4;
    --success: #25d366; /* WhatsApp Green */
}

* {
    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);
    background-color: var(--light);
}

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

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary);
    color: var(--light);
    height: 35px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.marquee {
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

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

/* Header */
.main-header {
    background-color: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 35px;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

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

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

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary);
}

/* Hero */
.hero-image {
    height: 70vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-content {
    color: var(--light);
}

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

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

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: #0d1a30; }

.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: #6b4520; }

.btn-light { background: var(--light); color: var(--primary); }

.btn-sm { padding: 5px 15px; font-size: 0.9rem; }

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

.section-title {
    text-align: center;
    margin: 50px 0 30px;
    font-size: 2.2rem;
}

.card {
    background: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover { transform: translateY(-5px); }

.card img { width: 100%; height: 250px; object-fit: cover; }

.card h3, .card p { padding: 15px; }

/* Contact Form */
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; margin: 40px 0; }

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

.map-container { height: 300px; width: 100%; margin-top: 20px; border-radius: 8px; }

/* Footer */
.main-footer {
    background: #111;
    color: #eee;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-logo { height: 60px; margin-bottom: 20px; }

.footer-links h4, .footer-contact h4 { margin-bottom: 20px; color: var(--light); }

.footer-links ul { list-style: none; }

.footer-links a { color: #aaa; text-decoration: none; display: block; margin-bottom: 10px; }

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.5rem;
    margin-right: 15px;
}

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

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

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

/* Utilities */
.centered-text { text-align: center; }
.legal-text h3 { margin: 30px 0 15px; }
.legal-text p { margin-bottom: 15px; }

/* Responsive */
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4, .contact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 2rem; }
    .nav-links { display: none; } /* Add JS toggle for mobile later */
}