/*
Theme Name: My Subscription Box
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A custom WordPress theme for my kids subscription box project. 
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-subscription-box
Tags: subscription, kids, blog, surecart, custom
*/

/* Reset some basic styles */
body, h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

/* Body & Font Styling */
body {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: #fdfdfd;
    color: #333;
}

/* Links */
a {
    color: #ff6b35;
    text-decoration: none;
}
a:hover {
    color: #e85a2a;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 30px;
}
header .site-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: #444;
    font-weight: 500;
}
nav ul li a:hover {
    color: #ff6b35;
}

/* Main Content */
main {
    padding: 30px;
}

/* Footer */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px 30px;
    font-size: 0.9rem;
}

/* Buttons */
button, .btn, input[type="submit"] {
    background: #ff6b35;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}
button:hover, .btn:hover, input[type="submit"]:hover {
    background: #e85a2a;
}
