@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --bg-pink: #fff0f5;
    --primary-pink: #ffc0cb;
    --vibrant-pink: #ff69b4;
    --coral: #ff7f50;
    --text-dark: #333333;
    --text-white: #ffffff;
    --gradient-pink: linear-gradient(135deg, #fff0f5 0%, #ffc0cb 100%);
    --gradient-vibrant: linear-gradient(to right, #ff7f50, #ff4e50);
}

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

body {
    background-color: var(--bg-pink);
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 2rem 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 1000;
}

.nav-links a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    margin: 0 1.5rem;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.shop-btn {
    background: var(--gradient-vibrant);
    color: white;
    padding: 0.8rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3);
    transition: transform 0.3s;
}

.shop-btn:hover {
    transform: translateY(-3px);
}

/* Hero Section (Split) */
.hero-split {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-pink);
    overflow: hidden;
}

.hero-left {
    flex: 1;
    padding: 0 10%;
    z-index: 2;
}

.hero-right {
    flex: 1.2;
    height: 100%;
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
}

.hero-left h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: #222;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.highlight-red {
    position: relative;
    display: inline-block;
}

.highlight-red::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(255, 78, 80, 0.3);
    z-index: -1;
    border-radius: 10px;
}

.hero-left p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-coral {
    background: var(--gradient-vibrant);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(255, 127, 80, 0.3);
}

.btn-outline-pink {
    border: 2px solid var(--primary-pink);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
}

/* Features */
.features-strip {
    display: flex;
    justify-content: space-around;
    padding: 4rem 10%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.feature-item {
    text-align: center;
    max-width: 250px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--coral);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1.2rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    font-size: 0.85rem;
    color: #777;
}

/* Sections */
section {
    padding: 80px 10%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-family: 'Playfair Display', serif;
}

/* Portfolio & Services placeholders */
.item-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 2rem;
}
