﻿/* ORGANIC MODERNISM THEME - AUSTRIA */
:root {
    --tt-primary: #8D7B68; /* Earth Clay */
    --tt-secondary: #A4907C; /* Light Sand */
    --tt-accent: #6B8E23; /* Olive Green (Nature) */
    --tt-bg: #FDFCF8; /* Cream/Paper */
    --tt-text: #2D2D2D; /* Soft Charcoal */
    --tt-white: #FFFFFF;
    --tt-radius: 12px;
    --tt-shadow: 0 10px 30px rgba(141, 123, 104, 0.1);
    --tt-font-head: 'Playfair Display', serif;
    --tt-font-body: 'Lato', sans-serif;
}

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

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

h1, h2, h3 { font-family: var(--tt-font-head); color: var(--tt-primary); margin-bottom: 1rem; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; border-radius: var(--tt-radius); }

/* --- HEADER --- */
.tt-header {
    background: var(--tt-white);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}
.tt-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.tt-nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.tt-logo { display: flex; align-items: center; gap: 10px; font-family: var(--tt-font-head); font-size: 1.5rem; font-weight: 700; color: var(--tt-primary); }
.tt-logo img { height: 40px; }

.tt-menu { display: flex; gap: 30px; list-style: none; }
.tt-menu a { font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; color: var(--tt-text); }
.tt-menu a:hover { color: var(--tt-primary); }

/* Mobile Menu */
.tt-burger { display: none; cursor: pointer; font-size: 1.8rem; color: var(--tt-primary); }

@media (max-width: 768px) {
    .tt-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--tt-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        text-align: center;
    }
    .tt-menu.active { display: flex; }
    .tt-burger { display: block; }
}

/* --- HERO --- */
.tt-hero {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(253,252,248,0.9), rgba(253,252,248,0.7)), url('https://images.pexels.com/photos/4207898/pexels-photo-4207898.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.tt-hero-content { max-width: 600px; }
.tt-hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.tt-btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--tt-primary);
    color: var(--tt-white);
    border-radius: 50px;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: var(--tt-shadow);
}
.tt-btn:hover { background: var(--tt-secondary); transform: translateY(-2px); }

/* --- SERVICES --- */
.tt-section { padding: 80px 0; }
.tt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.tt-card {
    background: var(--tt-white);
    padding: 30px;
    border-radius: var(--tt-radius);
    border: 1px solid rgba(141, 123, 104, 0.1);
    transition: 0.3s;
}
.tt-card:hover { transform: translateY(-5px); box-shadow: var(--tt-shadow); }
.tt-card img { height: 200px; width: 100%; object-fit: cover; margin-bottom: 20px; }

/* --- CONTACT FORM --- */
.tt-form-box {
    background: var(--tt-white);
    padding: 40px;
    border-radius: var(--tt-radius);
    box-shadow: var(--tt-shadow);
    max-width: 700px;
    margin: 0 auto;
}
.tt-input-group { margin-bottom: 20px; }
.tt-input-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--tt-primary); }
.tt-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #FAFAFA;
}
.tt-input:focus { border-color: var(--tt-primary); outline: none; }

/* --- FAQ --- */
.tt-faq-item {
    background: var(--tt-white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--tt-primary);
    cursor: pointer;
}
.tt-faq-q { font-weight: 700; font-family: var(--tt-font-head); font-size: 1.1rem; }
.tt-faq-a { display: none; margin-top: 10px; color: #555; }
.tt-faq-item.active .tt-faq-a { display: block; }

/* --- FOOTER --- */
.tt-footer { background: #EBE5CE; padding: 60px 0 20px; margin-top: 60px; color: var(--tt-text); }
.tt-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.tt-footer h4 { color: var(--tt-primary); }
.tt-legal-links a { font-size: 0.9rem; color: #666; display: block; margin-bottom: 5px; }

/* --- COOKIE BANNER --- */
.tt-cookie {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: var(--tt-white);
    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: 999;
}
