:root {
    --gold-color: #BFA065;
    --dark-gold: #8B7355;
    --light-gold: #D4AF37;
    --background-color: #141615;
    --text-color: #FFFFFF;
    --accent-color: rgba(191, 160, 101, 0.1);
}

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

body {
    background-color: var(--background-color);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(191, 160, 101, 0.1) 0%, rgba(20, 22, 21, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
    padding-bottom: 100px; /* Ensure space for footer */
}

.hero-section {
    margin-top: 40px;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.brand-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0;
    animation: floatAnimation 6s ease-in-out infinite;
}

.shimmer-text {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 8px;
    animation: shimmer 3s infinite;
    background: linear-gradient(
        90deg,
        var(--gold-color) 0%,
        #ffffff 50%,
        var(--gold-color) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 5px;
    text-shadow: 0 4px 12px rgba(191, 160, 101, 0.1);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.shimmer-text:hover {
    transform: scale(1.05);
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--gold-color);
    letter-spacing: 8px;
    margin-bottom: 8px;
    opacity: 0.9;
    text-transform: uppercase;
}

.location {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gold);
    letter-spacing: 6px;
    position: relative;
    padding-bottom: 10px;
}

.location::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dark-gold), transparent);
}

.welcome-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    line-height: 1.4;
    margin: 40px 0;
    color: var(--text-color);
    animation: fadeIn 2s ease-out;
}

.highlight {
    color: var(--gold-color);
    font-weight: 500;
}

.welcome-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--dark-gold);
    margin-top: 15px;
}

.app-buttons-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 320px;
    animation: fadeIn 2.5s ease-out;
}

.app-button {
    background: linear-gradient(135deg, rgba(191, 160, 101, 0.2), rgba(191, 160, 101, 0.1));
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(191, 160, 101, 0.3);
    backdrop-filter: blur(5px);
}

.app-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(191, 160, 101, 0.2);
    border-color: var(--gold-color);
}

.app-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-icon, .play-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-color);
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.small-text {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

.large-text {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.features {
    display: flex;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    text-align: center;
    animation: fadeIn 3s ease-out;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.feature-text {
    color: var(--gold-color);
    font-size: 16px;
    font-weight: 500;
}


.footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    width: 100%;
    text-align: center;
    background: linear-gradient(to top, rgba(191, 160, 101, 0.15), transparent);
    backdrop-filter: blur(5px);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-link {
    color: var(--dark-gold);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(191, 160, 101, 0.05);
}

.footer-link:hover {
    color: var(--gold-color);
    background: rgba(191, 160, 101, 0.1);
    transform: translateY(-2px);
}

.footer-separator {
    color: var(--dark-gold);
    font-size: 8px;
    opacity: 0.6;
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

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

@keyframes floatAnimation {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@media (min-width: 768px) {
    .app-buttons {
        flex-direction: row;
        max-width: 660px;
        justify-content: center;
    }
    
    .app-button {
        min-width: 280px;
    }

    .welcome-text {
        font-size: 42px;
    }

    .features {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px 16px;
        gap: 2rem;
        padding-bottom: 80px;
    }

    .shimmer-text {
        font-size: 42px;
        letter-spacing: 6px;
    }

    .subtitle {
        font-size: 20px;
        letter-spacing: 6px;
    }

    .location {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .welcome-text {
        font-size: 24px;
        padding: 0 10px;
    }

    .brand-text {
        padding: 1rem 0;
    }

    .footer {
        padding: 20px 0;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-link {
        font-size: 14px;
        padding: 6px 12px;
    }

    .app-buttons-container {
        padding: 10px;
    }

    .features {
        gap: 30px;
        padding: 0 10px;
    }
}

@media (max-width: 380px) {
    .shimmer-text {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .subtitle {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .welcome-text {
        font-size: 22px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }

    .footer-separator {
        display: none;
    }
}