/* 
   Misty Hive - Premium Nature-Luxury Theme
   Variables: Gold, Ivory, Forest Dark Colors 
*/
:root {
    --bg-dark: #0a0e0c;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --gold-glow: rgba(212, 175, 55, 0.2);
    --ivory-white: #fdfbf7;
    --text-muted: rgba(253, 251, 247, 0.7);
    --glass-bg: rgba(10, 14, 12, 0.4);
    --glass-border: rgba(212, 175, 55, 0.15);
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

body, html {
    height: 100%;
    width: 100%;
    font-family: var(--font-body);
    color: var(--ivory-white);
    background-color: var(--bg-dark);
    overflow: hidden;
}

/* Background image & overlay */
body {
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(5, 7, 6, 0.8) 0%,
        rgba(10, 14, 12, 0.4) 50%,
        rgba(5, 7, 6, 0.9) 100%
    );
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
    animation: pulse 8s infinite alternate;
}

/* Layout */
.container {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.content-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px var(--glass-border);
    animation: floatUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

/* Typography & Brand */
.logo-container {
    margin-bottom: 24px;
}

.brand-logo {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
    animation: fadeIn 2s ease 1s forwards;
    opacity: 0;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold-primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    animation: fadeIn 2s ease 1.2s forwards;
    opacity: 0;
}

.brand-tagline {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 40px;
    animation: fadeIn 2s ease 1.4s forwards;
    opacity: 0;
}

/* Divider Elements */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0 40px;
    position: relative;
    animation: fadeIn 2s ease 1.6s forwards;
    opacity: 0;
}

.divider::before, .divider::after {
    content: '';
    height: 1px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--gold-primary));
}

.divider::after {
    background: linear-gradient(to left, transparent, var(--gold-primary));
}

.diamond {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    transform: rotate(45deg);
    margin: 0 15px;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Coming Soon Animation */
.teaser-text {
    font-size: 1.2rem;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 25px;
    letter-spacing: 2px;
    animation: fadeIn 2s ease 1.8s forwards;
    opacity: 0;
}

.coming-soon {
    margin-bottom: 50px;
}

.letter {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 12px;
    color: var(--ivory-white);
    opacity: 0;
    transform: translateY(10px) scale(0.9);
    animation: revealLetter 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.space {
    width: 20px;
    display: inline-block;
}

/* Newsletter Registration */
.newsletter {
    animation: fadeIn 2s ease 2s forwards;
    opacity: 0;
}

.newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.glass-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 12px 20px;
    color: var(--ivory-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
    outline: none;
    transition: all 0.3s ease;
}

.glass-input:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.gold-btn {
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gold-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.gold-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.gold-btn:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 10;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

/* Keyframes */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes revealLetter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pulse {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-title { font-size: 2.5rem; }
    .brand-tagline { font-size: 0.9rem; letter-spacing: 4px; }
    .letter { font-size: 1.5rem; letter-spacing: 8px; }
    .space { width: 10px; }
    .content-wrapper { padding: 40px 20px; }
    .newsletter-form { flex-direction: column; align-items: center; }
    .glass-input { max-width: 100%; }
    .gold-btn { width: 100%; }
}

@media (max-width: 480px) {
    .brand-title { font-size: 2rem; }
    .brand-logo { width: 90px; }
    .letter { font-size: 1.2rem; letter-spacing: 5px; }
}
