/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: url('assets/bg-wave-03.png') no-repeat center center fixed;
    background-size: cover;
}

/* Background container */
.background-gradient {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
}

/* Logo styling */
.logo {
    width: 240px;
    height: auto;
    margin-bottom: 15px;
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.nav-button {
    position: relative;
    display: inline-block;
    padding: 10px 50px;
    margin: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: inset 1px 1px 3px rgba(255, 255, 255, 0.05), inset -1px -1px 3px rgba(0, 0, 0, 0.2), 0 0 4px rgba(91, 58, 118, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

    .nav-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
        animation: shimmerLoop 4s linear infinite;
        z-index: 0;
    }

@keyframes shimmerLoop {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nav-button:hover {
    background: rgba(91, 58, 118, 0.1);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: inset 1px 1px 4px rgba(255, 255, 255, 0.06), inset -1px -1px 4px rgba(0, 0, 0, 0.25), 0 0 6px rgba(91, 58, 118, 0.3);
}

/* Main Page Container */
.page-container {
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 1px 6px rgba(0, 0, 0, 0.4), inset -1px -1px 6px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #fff;
}

/* Glass Card inside Page */
.glass-card {
    background: transparent;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
}

    .glass-card h1 {
        font-size: 40px;
        margin-bottom: 16px;
        font-weight: 600;
    }

    .glass-card p {
        font-size: 16px;
        line-height: 1.6;
    }

/* Contact Form Glass Styling */
.form-glass input,
.form-glass textarea {
    width: 100%;
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(6px);
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.04), inset -1px -1px 2px rgba(0,0,0,0.3);
}

.form-glass textarea {
    resize: vertical;
    min-height: 120px;
}

/* Fade Message */
.fade-message {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    min-height: 36px;
    letter-spacing: 0.5px;
    background: linear-gradient(90deg, #a18cd1, #5b3a76, #392755);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    text-shadow: 0 0 6px rgba(91, 58, 118, 0.5), 0 0 18px rgba(0, 0, 0, 0.6);
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Store Card Container */
.store-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

/* Store Cards */
.store-card {
    width: 160px;
    height: 160px;
    border-radius: 30px;
    padding: 1px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    box-shadow: inset 1px 1px 6px rgba(255,255,255,0.05), inset -2px -2px 6px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .store-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        opacity: 0.92;
    }

    .store-card:hover {
        transform: scale(1.04);
        box-shadow: inset 2px 2px 8px rgba(255, 255, 255, 0.06), inset -2px -2px 8px rgba(0, 0, 0, 0.35), 0 0 12px rgba(91, 58, 118, 0.25);
    }

/* Responsive: On mobile, allow cards to be slightly larger */
@media screen and (max-width: 600px) {
    .store-card {
        width: 180px;
        height: 180px;
    }
}
