/* filepath: c:\misaworld.com\public\css\style.css */
@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif; /* A clean, modern font as a base */
    margin: 0;
    padding: 0;
    background-color: #ffe6f2; /* Light pink background */
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #ff69b4; /* Hot pink header */
    color: white;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 5px solid #ff1493; /* Deeper pink border */
}

header .social-media {
    margin-top: 15px; /* Add some space above the social icons in the header */
}

h1 {
    margin: 0;
    font-family: 'Mochiy Pop One', sans-serif; /* Cute, bubbly anime-style font for main title */
    font-size: 3em;
    text-shadow: 2px 2px #ff1493; /* Pink shadow for depth */
}

nav {
    margin: 20px 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #ff1493; /* Deeper pink on hover */
    text-decoration: none;
}

.main-content { /* Renamed from main for clarity, ensure this class is on your <main> tag or a div wrapping sections */
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white background for content */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff0f7; /* Very light pink for sections */
    border-radius: 8px;
}

h2 {
    font-family: 'Mochiy Pop One', sans-serif;
    color: #ff69b4; /* Hot pink for section titles */
    text-align: center;
    margin-bottom: 20px;
}

footer {
    background-color: #ff69b4; /* Hot pink footer */
    color: white;
    text-align: center;
    padding: 20px;
    /* position: relative; remove if causing issues, or adjust as needed */
    bottom: 0;
    width: 100%;
    margin-top: 30px; /* Ensure space above footer */
}

.social-media a {
    margin: 0 15px;
    text-decoration: none;
    color: white; /* White icons */
    font-size: 1.8em; /* Larger icons */
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ffd700; /* Gold color on hover, common in anime themes */
}

.social-media i {
    margin-right: 5px; /* Space between icon and text */
}

/* Ensure the main tag has the class .main-content if you use the .main-content selector */
/* Example: <main class="main-content"> */
