/*!
Theme Name: WishU - Wishes & Greetings Pro
Theme URI: https://wishu.co.in
Description: Premium wishes, greetings, and celebration messages theme with blog sidebar, search, and category pages. Perfect for Navratri, Birthday, Anniversary, Diwali, Holi, New Year, Christmas, and more.
Version: 2.1.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
Author: WishU
Author URI: https://wishu.co.in
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wishu-theme
Domain Path: /languages
Tags: wishes, greetings, celebration, festival, responsive, mobile-friendly, seo-friendly, adsense-ready, blog, sidebar

Premium wishes and greetings WordPress theme with professional blog layout.
*/

:root {
    --primary: #E8704A;
    --primary-dark: #d4573a;
    --background: #FFF8F3;
    --foreground: #1A1A1A;
    --card: #FFFFFF;
    --border: #E8DCC8;
    --secondary: #F5E6D3;
    --muted-foreground: #666666;
    --light-gray: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h1 { font-size: clamp(1.875rem, 5vw, 3.75rem); line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); line-height: 1.3; }
h3 { font-size: clamp(1.25rem, 3vw, 1.875rem); line-height: 1.4; }

p { font-size: 1rem; color: var(--muted-foreground); line-height: 1.8; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--primary-dark); }

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, .button, input[type="button"], input[type="submit"] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover {
    background-color: var(--primary-dark);
}

input[type="text"], input[type="email"], input[type="password"], input[type="search"], textarea, select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 112, 74, 0.1);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 { font-size: 1.875rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    .container { padding: 0 1rem; }
}
