/* Global luxury aesthetic */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    height: 100vh;
    transition: background 1.5s ease, color 1.5s ease;
}

body.dark-mode {
    background: #000000;
    color: #ffffff;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #d4af37;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    transition: all 0.3s ease, background 1.5s ease, color 1.5s ease, border-color 1.5s ease;
}

.lang-button:hover {
    background: #f9f9f9;
}

body.dark-mode .lang-button {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #d4af37;
}

body.dark-mode .lang-button:hover {
    background: #2a2a2a;
}

.flag {
    font-size: 20px;
    line-height: 1;
}

.lang-code {
    font-weight: 600;
}

.arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.lang-button:hover .arrow {
    transform: translateY(2px);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #ffffff;
    border: 1px solid #d4af37;
    border-radius: 8px;
    min-width: 80px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease, background 1.5s ease, border-color 1.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.lang-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

body.dark-mode .lang-dropdown {
    background: #1a1a1a;
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.lang-option {
    padding: 10px 16px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    color: #1a1a1a;
    transition: all 0.2s ease, background 0.2s ease, color 1.5s ease;
}

.lang-option:first-child {
    border-radius: 8px 8px 0 0;
}

.lang-option:last-child {
    border-radius: 0 0 8px 8px;
}

.lang-option:hover {
    background: #f9f9f9;
    color: #d4af37;
}

body.dark-mode .lang-option {
    color: #ffffff;
}

body.dark-mode .lang-option:hover {
    background: #2a2a2a;
    color: #d4af37;
}

.container {
    margin: auto;
    text-align: center;
    padding: 40px;
}

/* Golden bee logo */
.logo {
    width: 160px;
    height: auto;
    margin-bottom: 30px;
}

/* RUche Title */
.title {
    font-size: 48px;
    letter-spacing: 4px;
    font-weight: 600;
    margin: 0;
}

.subtitle {
    margin-top: 10px;
    font-size: 20px;
    color: #555;
    transition: color 1.5s ease;
}

body.dark-mode .subtitle {
    color: #aaa;
}

/* Coming Soon Tag */
.coming-soon {
    margin-top: 30px;
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
}

/* Email notify box */
.notify-box {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.notify-box input {
    padding: 12px 16px;
    min-width: 240px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    transition: background 1.5s ease, color 1.5s ease, border-color 1.5s ease;
}

body.dark-mode .notify-box input {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #444;
}

.notify-box button {
    padding: 12px 20px;
    background: #d4af37;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: 0.2s;
}

.notify-box button:hover {
    background: #b9932c;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
    color: #999;
    transition: color 1.5s ease;
}

body.dark-mode footer {
    color: #666;
}
