/* 2. GLOBAL STYLES & THE BLUE-PINK GRADIENT BACKGROUND */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

body {
    padding: 8px;
    color: #222;
    min-height: 120vh;
    overflow-x: hidden;
    
    /* This replaces all white parts with a smooth Blue to Pink gradient */
    background: linear-gradient(135deg, #dcf0f7 0%, #fbe4ed 100%);
    background-attachment: fixed; /* Keeps the gradient still while you scroll */
}

/* 3. NAVIGATION (Frosted Glass) */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    /* Very transparent white to let the background gradient show through */
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 8px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.logo img { height: 45px; }

.nav-links { list-style: none; display: flex; gap: 30px; }

.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover { color: #eb64a0; }

/* 4. HERO SECTION (With Smooth Fade-Out) */
.hero {
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('wimg.png');
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px; /* Softer corners */
    margin-bottom: 50px;

    /* This creates the 'bleed' effect into the rest of the page */
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.hero h1 { 
    font-size: 5rem; 
    font-weight: 200; 
    letter-spacing: 15px; 
    text-transform: uppercase;
    color: #222;
    text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.9);
}

.hero p { 
    font-size: 1.2rem; 
    color: #333; 
    margin-top: 10px;
    letter-spacing: 4px;
}

/* 5. PRODUCT & INFO CARDS (Glassmorphism) */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; padding: 50px 8%; }

.product-card, .card { 
    /* Semi-transparent so the blue/pink background bleeds through slightly */
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-align: center; 
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.product-card:hover { 
    transform: translateY(-10px); 
    background: rgba(255, 255, 255, 0.6) !important; 
}

.img-box {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.img-box img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.img-box .back-img { position: absolute; top: 0; left: 0; opacity: 0; }
.product-card:hover .back-img { opacity: 1; }
.product-card:hover .front-img { opacity: 0; }

/* 6. ANIMATIONS & FOOTER */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-page { animation: fadeUp 1s ease-out forwards; }

.content-section { padding: 80px 8%; }

.support-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #79d2c9, #eb64a0);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    z-index: 10001;
}
/* Member Lock Styling */
.member-lock {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Opposite side of the support bubble */
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
    z-index: 10001;
}

.member-lock:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}