/* Fonts */
body {
    font-family: 'Poppins', sans-serif;
}

/* Headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}
/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #ffe6f0;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Navigation Bar */
nav {
    background-color: #ffb6c1;
    padding: 15px;
    text-align: center;
}

nav h1 {
    margin: 0;
    color: white;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
}

/* Sections */
section {
    text-align: center;
    padding: 20px;
}

/* Images */
img {
    border-radius: 15px;
}

/* Footer */
footer {
    background-color: #ffb6c1;
    text-align: center;
    padding: 10px;
    color: white;
}

/* Mobile Responsive (REQUIRED) */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 5px 0;
    }

    img, video {
        width: 90%;
    }
}
form {
    background: white;
    padding: 20px;
    margin: 20px auto;
    width: 300px;
    border-radius: 15px;
}

input, select, textarea {
    width: 90%;
    padding: 8px;
    margin: 5px 0;
}
/* Sitemap Layout */
.sitemap-container {
    text-align: center;
}

/* Row of boxes */
.sitemap-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Box style */
.sitemap-box {
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    padding: 20px;
    border-radius: 15px;
    width: 120px;
    text-align: center;
    transition: 0.3s;
}

/* Main Home box */
.sitemap-box.main {
    width: 200px;
    font-weight: bold;
    margin: auto;
}

/* Links */
.sitemap-box a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hover effect (makes it look professional) */
.sitemap-box:hover {
    transform: scale(1.05);
}
ul, ol {
    list-style-position: inside;
    padding: 0;
    text-align: center;
}
/* Hamburger icon (hidden on desktop) */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 600px) {

    .menu-toggle {
        display: block;
        text-align: right;
        margin-right: 20px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #ffb6c1;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
/* Better spacing overall */
body {
    margin: 0;
    padding: 0;
}

/* Clean centered layout */
section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
}