/* CSS Variables - Shared across all stylesheets */
:root {
    /* Header & Footer */
    --header-footer-bg:   #1f1104;
    --navbar-scrolled-bg: #1f1104;

    /* Book / CTA buttons */
    --book-btn-bg:     #35682D;
    --book-btn-hover:  #2c5d25;
    --book-btn-shadow: rgba(217, 84, 30, 0.4);

    /* Accent — footer headings, hover highlights, icons */
    --accent-color: #925e1a;

    /* Text */
    --text-color: #3a2a1a;
    --text-dark:  #333333;
    --text-muted: #666666;

    /* Backgrounds */
    --bg-light:   #f9f5f0;
    --bg-section: #ececec;
    --white:      #faf8f5;

    /* Desktop navigation language selector (sits over dark/transparent header) */
    --nav-lang-color:     rgb(230, 230, 230);
    --nav-lang-hover:     #ffffff;
    --nav-lang-separator: rgba(255, 255, 255, 0.4);

    /* Mobile menu */
    --mobile-menu-bg:           #ffffff;
    --mobile-menu-text:         #111111;
    --mobile-menu-border:       rgba(0, 0, 0, 0.08);
    --mobile-lang-separator:    rgba(0, 0, 0, 0.25);

    /* UI tokens */
    --border-color:     #e0e0e0;
    --border-radius:    8px;
    --border-radius-lg: 16px;
    --transition:       all 0.3s ease;
    --shadow:    0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Favicon */
.icon { fill: #000000; }
    

@media (prefers-color-scheme: dark) {
    .icon { fill: #ffffff; }
}

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

body {
    font-family: "Poppins", Sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    overflow-x: hidden;
}

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