/*
Theme Name: Custom Made Cake Theme
Theme URI: https://custommadecake.com.au
Author: Custom Made Cake
Author URI: https://custommadecake.com.au
Description: Modern, responsive theme for Custom Made Cake website with React components, Tailwind CSS, and Framer Motion animations. Features interactive cake configurator, beautiful galleries, and smooth animations.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cmcake-theme
Tags: bakery, cakes, custom, e-commerce, responsive, react, tailwind, modern
*/

/* Basic reset and typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.site-title {
    font-size: 2rem;
    font-weight: 700;
    color: #e91e63;
    text-decoration: none;
}

/* Navigation */
.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #e91e63;
}

/* Content area */
.site-content {
    padding: 40px 0;
    min-height: 60vh;
}

/* Footer */
.site-footer {
    background: #f8f8f8;
    border-top: 1px solid #eee;
    padding: 30px 0;
    text-align: center;
    margin-top: 60px;
}

/* Temporary welcome message */
.welcome-message {
    text-align: center;
    padding: 60px 20px;
}

.welcome-message h1 {
    font-size: 3rem;
    color: #e91e63;
    margin-bottom: 20px;
}

.welcome-message p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #c2185b;
}
