/* Color Palette */
:root {
    --dark-purple: #150C1C;
    --light-beige: #D9C6BE;
    --warm-brown: #A06F5E;
    --cool-blue: #6395A8;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: var(--dark-purple);
    color: var(--light-beige);
}

/* Header Styles */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--cool-blue);
    color: var(--dark-purple);
    padding: 0 10px;
}

header h1 {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    font-size: 3em;
    color: var(--light-beige);
}

nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: var(--dark-purple);
}

/* Hero Section Style */
#hero {
    background: linear-gradient(45deg, var(--warm-brown), var(--cool-blue));
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-beige);
    font-size: 2em;
}

/* Section Styles */
section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 800px;
    margin: auto;
}

/* Other styles will be added here */