* {
    box-sizing: border-box;
}

/* --- THEME VARIABLES --- */
:root {
    /* Soft Pastel Palette */
    --bg-color: #FFF5F7; /* Very light pink background */
    --primary-color: #FF9AA2; /* Soft Salmon/Pink */
    --secondary-color: #B5EAD7; /* Mint Green */
    --accent-color: #C7CEEA; /* Soft Periwinkle */
    --text-color: #5D5D5D; /* Soft Grey (Not Harsh Black) */
    --white: #FFFFFF;
    
    /* Spacing & Borders */
    --card-radius: 20px;
    --transition: all 0.3s ease;
}

/* --- GLOBAL STYLES --- */
body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
h1, h2, h3 { color: #4A4A4A; font-weight: 700; }

/* --- NAVIGATION --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.8); /* Frosted Glass Effect */
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary-color); }

.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a:hover { color: var(--primary-color); }

/* --- HERO SECTION --- */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, var(--bg-color) 0%, #FFFFFF 100%);
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%; /* Makes it a circle */
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: 0 8px 20px rgba(255, 154, 162, 0.3); /* Soft pink glow */
    animation: float 3s ease-in-out infinite;
}

/* Floating animation for the avatar */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.social-bar { margin-top: 20px; font-size: 1.5rem; }
.social-bar a { margin: 0 10px; color: var(--primary-color); transition: var(--transition); }
.social-bar a:hover { transform: scale(1.2); }

/* --- CARDS & SECTIONS --- */
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: center;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--card-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Soft shadow */
    transition: var(--transition);
}

.card:hover { transform: translateY(-5px); }
.card-icon { font-size: 3rem; margin-bottom: 10px; }

/* --- VIDEO PLACEHOLDER --- */
.videoWrapper {
    background: var(--accent-color);
    padding: 50px;
    border-radius: var(--card-radius);
    color: var(--white);
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.btn-primary:hover { background-color: #ff7b85; }

.btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: #4a4a4a;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 20px;
}

/* --- FOOTER --- */
footer {
    background: var(--white);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    border-top: 5px solid var(--secondary-color);
}

/* --- MOBILE RESPONSIVENESS (Add this to the bottom of style.css) --- */
@media (max-width: 768px) {
    
    /* 1. Stack the Navigation Bar */
    nav {
        flex-direction: column; /* Stacks Logo on top of links */
        padding: 15px;
    }

    .nav-links {
        justify-content: center; /* Centers the links */
        flex-wrap: wrap; /* Allows links to drop to the next line if needed */
        padding: 0;
        gap: 10px; /* Reduces space between links */
        font-size: 0.9rem; /* Makes text slightly smaller to fit */
    }

    /* 2. Fix the Hero Section Width */
    .hero h1 {
        font-size: 1.8rem; /* Smaller title font for mobile */
        padding: 0 10px; /* Prevents text hitting the edge */
    }

    /* 3. Ensure nothing overflows horizontally */
    html, body {
        overflow-x: hidden; /* Cuts off anything sticking out */
        width: 100%;
    }
}
/* --- HELIOS PORTAL STYLES --- */
.card-helios { 
    border: 2px solid var(--primary-color) !important; 
    position: relative;
}

.neon-pulse { 
    animation: neon-glow 2s ease-in-out infinite; 
    display: inline-block; 
}

@keyframes neon-glow {
    0%, 100% { 
        text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff; 
        transform: scale(1); 
    }
    50% { 
        text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff; 
        transform: scale(1.1); 
    }
}

.btn-helios { 
    background: linear-gradient(45deg, #ff00ff, #00ffff) !important; 
    border: none !important; 
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
    color: white !important;
}

.btn-helios:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.5);
}
