:root {
    --bg-color: #fff0f5;
    --text-color: #2d2d2d;
    --accent: #ff0055;
    --gradient: linear-gradient(135deg, #ff0055 0%, #ffcc00 100%);
}

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

.creative-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-brush {
    padding: 10px 25px;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-brush:hover {
    transform: scale(1.05);
}

.hero {
    position: relative;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
}

.hero-content {
    z-index: 2;
    max-width: 50%;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero h1 i {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.btn-cta {
    padding: 15px 40px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 0, 85, 0.3);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 0, 85, 0.4);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    z-index: 0;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #ffcc00;
    top: -50px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: #00e5ff;
    bottom: -100px;
    right: -100px;
}

.hero-visual {
    z-index: 2;
    transform: rotate(-5deg);
}

.art-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    width: 350px;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.color-palette {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-palette span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.art-canvas {
    flex: 1;
    background: #f8f8f8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
}

.gallery {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.card {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.3s;
    cursor: pointer;
}

.card:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.card h3 {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px;
    color: #888;
    background: white;
}
