﻿/* THEME: ORGANIC MODERNISM (AUSTRIA) */
:root {
    --wta-primary: #8D7B68;     /* Terracotta Clay */
    --wta-secondary: #A4907C;   /* Sandstone */
    --wta-accent: #6B8E23;      /* Olive Leaf */
    --wta-bg: #FDFCF8;          /* Warm Paper */
    --wta-card-bg: #FFFFFF;     /* White */
    --wta-text: #2C2C2C;        /* Charcoal */
    --wta-text-light: #555555;  /* Grey */
    --wta-border: #E5E0D8;
    --wta-radius: 8px;
    --wta-shadow: 0 8px 30px rgba(141, 123, 104, 0.08);
    --wta-font-head: 'Merriweather', serif;
    --wta-font-body: 'Mulish', sans-serif;
}

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

body {
    font-family: var(--wta-font-body);
    background-color: var(--wta-bg);
    color: var(--wta-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--wta-font-head); font-weight: 700; color: var(--wta-primary); margin-bottom: 1rem; }
p { margin-bottom: 1.5rem; color: var(--wta-text-light); }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; border-radius: var(--wta-radius); display: block; }

/* UTILS */
.wta-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.wta-btn {
    display: inline-block;
    background: var(--wta-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(141, 123, 104, 0.3);
}
.wta-btn:hover { background: var(--wta-secondary); transform: translateY(-2px); }
.wta-section { padding: 80px 0; }

/* HEADER */
.wta-header {
    background: var(--wta-card-bg);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0,0,0,0.03);
}
.wta-nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.wta-logo { display: flex; align-items: center; gap: 12px; font-family: var(--wta-font-head); font-size: 1.4rem; font-weight: 900; color: var(--wta-primary); }
.wta-logo img { height: 40px; width: 40px; }
.wta-menu { display: flex; list-style: none; gap: 35px; }
.wta-menu a { font-weight: 600; font-size: 0.95rem; color: var(--wta-text); }
.wta-menu a:hover { color: var(--wta-primary); }
.wta-hamburger { display: none; font-size: 1.8rem; cursor: pointer; color: var(--wta-primary); }

/* MOBILE MENU */
@media (max-width: 768px) {
    .wta-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--wta-card-bg);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .wta-menu.active { display: flex; }
    .wta-hamburger { display: block; }
}

/* HERO */
.wta-hero {
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('https://images.pexels.com/photos/4207898/pexels-photo-4207898.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}
.wta-hero-content { max-width: 800px; margin: 0 auto; background: rgba(0,0,0,0.4); padding: 40px; border-radius: var(--wta-radius); backdrop-filter: blur(5px); }
.wta-hero h1 { font-size: 3.5rem; color: #fff; margin-bottom: 20px; line-height: 1.2; }
.wta-hero p { color: #f0f0f0; font-size: 1.2rem; margin-bottom: 30px; }

/* SERVICES GRID */
.wta-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.wta-card {
    background: var(--wta-card-bg);
    border: 1px solid var(--wta-border);
    border-radius: var(--wta-radius);
    overflow: hidden;
    transition: 0.3s;
}
.wta-card:hover { transform: translateY(-5px); box-shadow: var(--wta-shadow); }
.wta-card img { width: 100%; height: 250px; object-fit: cover; }
.wta-card-body { padding: 25px; }

/* FAQ */
.wta-faq-item {
    background: var(--wta-card-bg);
    border-bottom: 1px solid var(--wta-border);
    padding: 20px;
    cursor: pointer;
}
.wta-faq-q { font-weight: 700; font-family: var(--wta-font-head); font-size: 1.1rem; display: flex; justify-content: space-between; }
.wta-faq-a { display: none; margin-top: 15px; color: var(--wta-text-light); }
.wta-faq-item.active .wta-faq-a { display: block; animation: fadeIn 0.3s; }

/* CONTACT FORM */
.wta-form-box {
    background: var(--wta-card-bg);
    padding: 40px;
    border-radius: var(--wta-radius);
    box-shadow: var(--wta-shadow);
}
.wta-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--wta-border);
    border-radius: 4px;
    font-family: var(--wta-font-body);
    font-size: 1rem;
    background: #FAFAFA;
}
.wta-input:focus { outline: 1px solid var(--wta-primary); background: #fff; }

/* FOOTER */
.wta-footer { background: #EBE8E1; padding: 60px 0 20px; margin-top: 60px; }
.wta-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.wta-legal-links a { display: block; margin-bottom: 8px; font-size: 0.9rem; }
.wta-legal-links a:hover { text-decoration: underline; }

/* COOKIE */
.wta-cookie {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff; padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    display: none; align-items: center; justify-content: center; gap: 20px;
    z-index: 1000; border-top: 4px solid var(--wta-primary);
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
