/*
Theme Name: Corporate Party
Description: A royal, elegant WordPress theme designed for corporate event planning and catering services. Features luxury design elements, multi-cuisine showcases, and comprehensive event management capabilities.
Version: 1.0
Author: Royal Events
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: corporate-party
Tags: business, events, catering, corporate, luxury, elegant, responsive, custom-colors, custom-menu, custom-logo, featured-images, threaded-comments, translation-ready
*/

/* Color Variables */
:root {
    --royal-purple: #4a235a;
    --royal-purple-dark: #3a1c47;
    --royal-purple-light: #663a82;
    --royal-gold: #d4af37;
    --royal-gold-light: #f1c40f;
    --royal-burgundy: #800020;
    --royal-cream: #f9f3e3;
    --royal-black: #1a1a1a;
    --royal-white: #ffffff;
    --royal-gray: #f0f0f0;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.6;
    color: var(--royal-black);
    overflow-x: hidden;
    background-color: var(--royal-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--royal-purple-dark);
}

p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
}

/* Buttons */
.royal-btn {
    display: inline-block;
    background: var(--royal-purple);
    color: var(--royal-white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--royal-gold);
    transition: all 0.3s ease;
}

.royal-btn:hover {
    background: var(--royal-gold);
    color: var(--royal-purple-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldShimmer {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Dividers */
.royal-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
    margin: 2rem auto;
    width: 80%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    h3 { font-size: 1.5rem !important; }
    
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    section {
        padding: 60px 0 !important;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.8rem !important; }
    
    section {
        padding: 40px 0 !important;
    }
}