@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shopee-btn: #ee4d2d;
    --zalora-btn: #000000;
}

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

body, html {
    height: 100%;
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    overflow: hidden;
}

.landing-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('/bg-main.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

/* Add a subtle zoom animation to background */
.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

/* Top Gradient Overlay */
.top-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

/* Logo Section */
header {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

header .logo-svg {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Content Section */
main {
    position: relative;
    z-index: 2;
    padding-bottom: 80px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.shop-text {
    font-size: 1.0rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 24px;
    border-radius: 100px; /* Pill shape for premium feel */
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
}

.btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-zalora {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

.btn-zalora:hover {
    background: rgba(0, 0, 0, 0.9);
}

.btn-shopee {
    background: rgba(238, 77, 45, 0.8);
    color: #ffffff;
}

.btn-shopee:hover {
    background: rgba(238, 77, 45, 1);
}

/* Animation for entry */
.fade-up {
    animation: fadeUp 1s ease-out forwards;
    opacity: 0;
}

header.fade-up {
    animation-delay: 0.2s;
}

main.fade-up {
    animation-delay: 0.5s;
}

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

/* Mobile adjustments */
@media (max-width: 480px) {
    header {
        padding-top: 50px;
    }
    header .logo-svg {
        width: 180px;
    }
    .shop-text {
        font-size: 1rem;
    }
    .btn {
        padding: 16px 20px;
        font-size: 1rem;
    }
}
