:root {
    --primary-pink: #fce4ec;
    --dark-pink: #f48fb1;
    --text-color: #333333;
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.6);
    --aluminum: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #e0e0e0 100%);
    --shadow-light: rgba(255, 255, 255, 0.8);
    --shadow-dark: rgba(244, 143, 177, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--primary-pink);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Dynamic Background Blobs for 3D feel */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.pink-blob {
    width: 400px;
    height: 400px;
    background: #ff80ab;
    top: -100px;
    left: -100px;
}

.white-blob {
    width: 600px;
    height: 600px;
    background: #ffffff;
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.silver-blob {
    width: 300px;
    height: 300px;
    background: #e0e0e0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

/* Glassmorphism Utilities */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--shadow-dark);
}

/* 3D Elements */
.3d-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.3d-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px 0 var(--shadow-dark), 
                inset 0 2px 0 0 rgba(255,255,255,0.8);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 20px;
    margin: 0 20px;
    border-radius: 20px;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--aluminum);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.1));
}

.logo span {
    font-weight: 300;
    color: var(--dark-pink);
    -webkit-text-fill-color: var(--dark-pink);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--dark-pink);
}

/* Buttons */
button {
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.primary-btn {
    background: linear-gradient(135deg, #f48fb1, #ff80ab);
    color: white;
    border: none;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 128, 171, 0.6);
}

.secondary-btn {
    background: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid var(--dark-pink);
    backdrop-filter: blur(4px);
}

.secondary-btn:hover {
    background: rgba(244, 143, 177, 0.2);
}

.outline-btn {
    background: transparent;
    color: var(--dark-pink);
    border: 2px solid var(--dark-pink);
}

.outline-btn:hover {
    background: var(--dark-pink);
    color: white;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem 5% 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    padding: 3rem;
    border-radius: 30px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--dark-pink);
    font-style: italic;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 500px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.glass-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Categories */
.categories {
    padding: 4rem 5%;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-pink);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.category-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    padding: 3rem 2rem;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    font-size: 4rem;
    background: var(--aluminum);
    -webkit-background-clip: text;
    padding: 10px;
}

.category-card h3 {
    font-size: 1.8rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-content h2 {
    color: var(--dark-pink);
    margin-bottom: 1rem;
}

.modal-content p {
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
    }
    .hero-image-container {
        width: 100%;
    }
    .nav-links {
        display: none; /* simple mobile nav approach */
    }
}
