:root {
    --primary-color: #ffffff;
    --accent-color: #d4af37; /* Gold accent */
    --bg-overlay: rgba(10, 10, 10, 0.75);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: var(--primary-color);
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 24s infinite;
}

.slide-1 {
    background-image: url('../images/bg-store-1.png');
    animation-delay: 0s;
}

.slide-2 {
    background-image: url('../images/bg-store-2.png');
    animation-delay: 8s;
}

.slide-3 {
    background-image: url('../images/bg-store-3.png');
    animation-delay: 16s;
}

@keyframes slideAnimation {
    0% { opacity: 0; transform: scale(1); }
    8.33% { opacity: 1; transform: scale(1.02); }
    33.33% { opacity: 1; transform: scale(1.08); }
    41.66% { opacity: 0; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), var(--bg-overlay) 80%);
    z-index: 0;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 5%;
    position: relative;
    z-index: 1;
    height: 100%;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2vh;
    animation: fadeInDown 1.5s ease-out;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.2em;
    font-weight: 400;
    text-transform: uppercase;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1.5s ease-out 0.5s both;
}

.coming-soon {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
}

.subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.notify-form {
    width: 100%;
    max-width: 450px;
}

.input-group {
    display: flex;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.8rem 1.5rem;
    color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.message {
    margin-top: 1rem;
    font-size: 0.9rem;
    height: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.message.success {
    color: #4cd137;
    opacity: 1;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2vh;
    animation: fadeInUp 1.5s ease-out 1s both;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
    transition: color 0.3s;
}

.social-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.social-link:hover::after {
    width: 100%;
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Logo styling */
.brand-logo {
    width: 80px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

