/*
Theme Name: ZeroBelowTheme
Theme URI: https://zerobelow.us
Author: Your Name
Author URI: https://zerobelow.us
Description: A custom WordPress theme for ZeroBelow, a freeze-dried candy store.
Version: 1.0
Text Domain: zerobelowtheme
*/

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    background-color: #e6f0fa; /* Light icy blue */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background: linear-gradient(135deg, #00c4ff, #ff66cc); /* Icy blue to candy pink gradient */
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

header h1 {
    color: #fff;
    font-size: 36px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

header img {
    max-width: 150px;
}

nav {
    background-color: #00aaff; /* Bright blue */
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffeb3b; /* Bright yellow hover effect */
}

main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

footer {
    background-color: #00aaff;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

h2 {
    color: #ff66cc; /* Candy pink */
    text-align: center;
}