:root {
    --primary: #B76635;
    /* Copper */
    --primary-dark: #6B261F;
    /* Golden Chestnut */
    --bg-dark: #2A1810;
    /* Derived from Brown Deer but darker for background */
    --surface: #38251C;
    /* Darker brown */
    --text-light: #C29666;
    /* Withered Leaves */
    --text-bright: #F5F5F5;
    --accent: #583924;
    /* Nutty Brown */
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a0f0a;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-bright);
}

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

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(26, 15, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(183, 102, 53, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: var(--transition);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: var(--transition);
    opacity: 0.4;
}

.lang-btn.active {
    color: var(--primary);
    opacity: 1;
}

.lang-divider {
    opacity: 0.2;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/bg.png') center/cover no-repeat;
    position: relative;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 15, 10, 0.5), rgba(26, 15, 10, 0.9));
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 20px;
    font-weight: 400;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
    transition-delay: 0.2s;
}

.hero.active h1,
.hero.active p {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(183, 102, 53, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(183, 102, 53, 0.3);
}

/* Countdown Section */
.countdown-section {
    padding: 120px 0;
    background-color: #1a0f0a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    font-weight: 400;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-num {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    line-height: 1;
}

.timer-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-top: 10px;
}

.opening-date {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent);
}

/* Join Section */
.join-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 15, 10, 0.9), rgba(26, 15, 10, 0.9)), url('assets/bg.png') center/cover fixed;
}

.join-card {
    background-color: rgba(56, 37, 28, 0.6);
    backdrop-filter: blur(20px);
    padding: 80px 40px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(183, 102, 53, 0.2);
    text-align: center;
    border-radius: 4px;
}

.join-card h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.join-card p {
    margin-bottom: 40px;
    font-weight: 300;
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.join-form input {
    background: rgba(26, 15, 10, 0.5);
    border: 1px solid rgba(183, 102, 53, 0.3);
    padding: 15px 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: var(--transition);
}

.join-form input:focus {
    border-color: var(--primary);
    background: rgba(26, 15, 10, 0.8);
}

/* Contacts Section */
.contacts-section {
    padding: 120px 0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-list {
    list-style: none;
    margin-top: 40px;
}

.contact-list li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.contact-list a:hover {
    color: var(--primary);
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 30px;
}

.social-icon {
    color: var(--text-bright);
    text-decoration: none;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-icon:hover {
    background: var(--primary);
    color: #fff;
}

.map-placeholder {
    height: 400px;
    background-color: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(183, 102, 53, 0.1);
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(183, 102, 53, 0.1);
    font-size: 0.8rem;
    font-weight: 300;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 15, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--primary);
}

.mobile-lang-switcher {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.mobile-lang-switcher .lang-btn {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.5;
}

.mobile-lang-switcher .lang-btn.active {
    opacity: 1;
    color: var(--primary);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .timer {
        gap: 15px;
    }

    .timer-num {
        font-size: 2.5rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 3rem;
    }
}