/* 
  Taschelle Luxury Design System 
  Theme: Minimalist Black & White
*/

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --bg-color: #FFFFFF;
    --text-color: #1A1A1A;
    --light-gray: #F5F5F5;
    --border-color: #E0E0E0;
    --white: #FFFFFF;
    --transition-speed: 0.4s;
    --luxury-font: 'Playfair Display', serif;
    --base-font: 'Inter', sans-serif;
}

.taschelle-app-body {
    margin: 0;
    padding: 0;
    font-family: var(--base-font);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
}

.taschelle-app-body *,
.taschelle-app-body *::before,
.taschelle-app-body *::after {
    box-sizing: border-box;
}

.taschelle-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Advertisement Note Top */
.taschelle-adv-note-top {
    background-color: var(--light-gray);
    color: #666;
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

/* Page Loader */
.taschelle-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.taschelle-loader-logo {
    font-family: var(--luxury-font);
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: taschelle-fade 2s infinite;
}

@keyframes taschelle-fade {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Header */
.taschelle-header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.taschelle-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taschelle-brand-logo {
    font-family: var(--luxury-font);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.taschelle-nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.taschelle-nav-item-link {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition-speed);
}

.taschelle-nav-item-link:hover {
    color: #888;
}

.taschelle-cta-btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background var(--transition-speed);
}

.taschelle-cta-btn:hover {
    background-color: #333;
}

/* Hamburger */
.taschelle-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.taschelle-hamburger-line {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px 0;
    transition: 0.3s;
}

.taschelle-nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1900;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.taschelle-nav-backdrop.active {
    display: block;
    opacity: 1;
}

.taschelle-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    visibility: hidden;
}

.taschelle-mobile-nav.active {
    transform: translateX(0);
    visibility: visible;
}

.taschelle-close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    margin-bottom: 40px;
}

.taschelle-close-menu::before,
.taschelle-close-menu::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 1px;
    background-color: var(--primary-color);
}

.taschelle-close-menu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.taschelle-close-menu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.taschelle-mobile-links {
    list-style: none;
    padding: 0;
}

.taschelle-mobile-link-item {
    margin-bottom: 30px;
}

.taschelle-mobile-link-a {
    text-decoration: none;
    font-family: var(--luxury-font);
    font-size: 24px;
    color: var(--primary-color);
    text-transform: uppercase;
}

/* Hero Section */
.taschelle-hero {
    padding: 100px 0;
    background-color: var(--white);
}

.taschelle-hero-flex {
    display: flex;
    gap: 80px;
    align-items: center;
}

.taschelle-hero-content {
    flex: 1.2;
}

.taschelle-hero-image-box {
    flex: 1;
    text-align: right;
}

.taschelle-hero-tag {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 15px;
    display: block;
}

.taschelle-hero-title {
    font-family: var(--luxury-font);
    font-size: 64px;
    line-height: 1.1;
    color: var(--primary-color);
    margin: 0 0 25px;
}

.taschelle-hero-desc {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 500px;
}

.taschelle-hero-img {
    max-width: 100%;
    filter: grayscale(20%);
    transition: filter 0.5s;
}

.taschelle-hero-img:hover {
    filter: grayscale(0%);
}

/* Sections */
.taschelle-section-padding {
    padding: 120px 0;
}

.taschelle-section-title {
    font-family: var(--luxury-font);
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Feature Grid */
.taschelle-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.taschelle-luxury-card {
    padding: 40px;
    background: var(--light-gray);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.taschelle-luxury-card:hover {
    background: var(--white);
    border-color: var(--primary-color);
}

.taschelle-card-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: block;
}

.taschelle-card-title {
    font-family: var(--luxury-font);
    font-size: 22px;
    margin-bottom: 15px;
}

/* Testimonials */
.taschelle-testimonial {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.taschelle-quote {
    font-family: var(--luxury-font);
    font-size: 28px;
    font-style: italic;
    margin-bottom: 20px;
}

.taschelle-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

/* FAQs */
.taschelle-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.taschelle-faq-item {
    border-bottom: 1px solid var(--border-color);
}

.taschelle-faq-question {
    width: 100%;
    padding: 25px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--luxury-font);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.taschelle-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--secondary-color);
}

.taschelle-faq-item.active .taschelle-faq-answer {
    max-height: 200px;
    padding-bottom: 25px;
}

/* Footer */
.taschelle-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 100px 0 40px;
}

.taschelle-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.taschelle-footer-heading {
    font-family: var(--luxury-font);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: #AAA;
}

.taschelle-footer-link {
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.taschelle-footer-link:hover {
    opacity: 1;
}

.taschelle-adv-note-footer {
    text-align: center;
    border-top: 1px solid #333;
    padding: 40px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

.taschelle-copyright {
    text-align: center;
    font-size: 11px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Cookies */
.taschelle-cookie-banner {
    position: fixed;
    bottom: 40px;
    left: 40px;
    max-width: 450px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    z-index: 5000;
    display: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.taschelle-cookie-btns {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.taschelle-btn-cookie {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--white);
    background: none;
    color: var(--white);
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
}

.taschelle-btn-accept {
    background: var(--white);
    color: var(--primary-color);
}

/* Modal */
.taschelle-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 6000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.taschelle-modal-inner {
    background: var(--white);
    width: 100%;
    max-width: 700px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 60px;
    position: relative;
}

.taschelle-no-scroll {
    overflow: hidden !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .taschelle-hero-flex {
        gap: 40px;
    }

    .taschelle-hero-title {
        font-size: 48px;
    }

    .taschelle-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .taschelle-nav-links,
    .taschelle-header .taschelle-cta-btn {
        display: none;
    }

    .taschelle-hamburger {
        display: block;
    }

    .taschelle-hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .taschelle-hero-desc {
        margin: 0 auto 40px;
    }

    .taschelle-hero-image-box {
        text-align: center;
    }

    .taschelle-grid-3 {
        grid-template-columns: 1fr;
    }

    .taschelle-cookie-banner {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: 100%;
    }
}