:root {
    --bg-dark: #1e2532; /* Derived from the logo background */
    --gold: #bca071; /* Derived from the logo gold color */
    --gold-light: #d8be91;
    --gold-dark: #9a7d4a;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow/gradient effect */
.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 37, 50, 0.85), rgba(30, 37, 50, 0.95));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 2rem;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    filter: drop-shadow(0px 10px 15px rgba(0, 0, 0, 0.5));
}

.logo {
    max-width: 150px;
    height: auto;
}

/* Coming Soon Text */
.text-container {
    margin-bottom: 3rem;
}

.coming-soon-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.separator {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin: 2rem auto 0;
    border-radius: 2px;
}

/* Location Section */
.location-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(188, 160, 113, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.location-container:hover {
    transform: translateY(-5px);
    border-color: rgba(188, 160, 113, 0.5);
}

.address-box {
    margin-bottom: 2rem;
}

.location-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.address-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 400;
}

/* Map Button */
.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.map-btn:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(188, 160, 113, 0.4);
}

/* Social Media */
.social-container {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--gold);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(188, 160, 113, 0.2);
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(188, 160, 113, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .location-container {
        padding: 2rem 1.5rem;
    }
}
