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

body {
    font-family: 'Arial', sans-serif; /* Will choose a cuter font later */
    line-height: 1.6;
    color: #333;
    background-color: #f0f8ff; /* Light, cute background */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #ffebf7; /* Cute pinkish header */
    color: #333;
    padding: 1rem 0;
    border-bottom: 3px solid #ffc1e3;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

header .logo-container {
    display: flex;
    align-items: center;
}

header #nav-logo {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    border-radius: 50%; /* Make logo circular if it looks good */
}

header h1 {
    font-size: 1.8rem;
    /* Add a cute font here later */
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ff69b4; /* Hot pink for hover - cute! */
}

/* Hero Section */
#hero {
    background: linear-gradient(to bottom, #f0f8ff, #e6e6fa); /* Light lavender gradient */
    padding: 60px 0;
    text-align: center;
    min-height: 80vh; /* Make it take most of the screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero .hero-content {
    max-width: 800px;
    margin: auto;
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4a4a4a;
    /* Cute font */
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.btn {
    display: inline-block;
    background: #ff69b4; /* Hot pink */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px; /* Rounded cute buttons */
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 5px;
    border: none;
}

.btn:hover {
    background: #ff85c1;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #7df9ff; /* Cute light blue/cyan */
    color: #333;
}

.btn-secondary:hover {
    background: #98fafe;
}

/* General Section Styling */
section {
    padding: 60px 0;
    border-bottom: 1px solid #ddd;
}

section:nth-child(even) {
 background-color: #fff0f5; /* Lavender blush for alternating sections */
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #4a4a4a;
    /* Cute font */
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}

footer p {
    margin-bottom: 5px;
}

footer a {
    color: #ffc1e3; /* Light pink for links */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header nav {
        flex-direction: column;
    }
    header nav ul {
        margin-top: 15px;
        flex-direction: column;
        align-items: center;
    }
    header nav ul li {
        margin: 10px 0;
    }
    #hero h1 {
        font-size: 2.5rem;
    }
    #hero p {
        font-size: 1rem;
    }
}

