:root {
    --primary: #ff85a2;
    --secondary: #ffb3c6;
    --accent: #ffee93;
    --text: #4a4a4a;
    --white: #ffffff;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--text);
    background-color: #fffafb;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
}

.logo {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--primary);
}

.logo span { color: var(--accent); }

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
}

nav ul li { margin-left: 30px; }

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

nav ul li a:hover { color: var(--primary); }

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 10%;
    min-height: 80vh;
}

.hero-content { flex: 1; }

.hero-content h1 {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(255, 133, 162, 0.3);
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: #ff7091;
}

/* Image Styling */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 80%;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.circle-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: 1;
    top: -20px;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 80px 10%;
    text-align: center;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid #f0f0f0;
}

.card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}
/* Footer Styles */
footer {
    background-color: #fff0f3;
    padding: 60px 10% 20px;
    margin-top: 50px;
    border-top: 2px solid var(--secondary);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Fredoka One', cursive;
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: var(--text);
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links a {
    text-decoration: none;
    color: var(--primary);
    font-weight: bold;
    margin-right: 15px;
    font-size: 0.9rem;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.subscribe-form input {
    padding: 10px 15px;
    border: 1px solid var(--secondary);
    border-radius: 25px;
    flex: 1;
    outline: none;
}

.subscribe-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background: #ff7091;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 133, 162, 0.2);
    font-size: 0.85rem;
    color: #888;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .subscribe-form {
        flex-direction: column;
    }
}
/* Mobile Responsive */
@media (max-width: 768px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 2.5rem; }
    .circle-bg { width: 250px; height: 250px; }
}