/*
Theme Name: Excel Event Party Hire
Theme URI: https://exceleventpartyhire.com.au
Author: Antinoob Solutions
Author URI: https://antinoob.com
Description: A premium event & party hire theme with Champagne & Deep Plum aesthetic. Custom built with elegant animations, responsive design, and full WordPress integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: excel-event
Tags: custom-menu, custom-logo, featured-images, theme-options, one-column, full-width-template

Excel Event Party Hire WordPress Theme
Copyright 2026 Antinoob Solutions
*/

/* ═══════════════════════════════════════════
   ROOT VARIABLES
   ═══════════════════════════════════════════ */
:root {
    --plum-deep: #1a0a1e;
    --plum-medium: #2d1435;
    --plum-light: #3e1f4a;
    --champagne: #d4a853;
    --champagne-light: #e8c374;
    --champagne-dark: #b8923f;
    --champagne-glow: rgba(212, 168, 83, 0.25);
    --cream: #f0e6d3;
    --cream-muted: rgba(240, 230, 211, 0.8);
    --cream-faint: rgba(240, 230, 211, 0.5);
    --white: #ffffff;
    --black: #000000;
    --overlay-heavy: rgba(26, 10, 30, 0.75);
    --overlay-medium: rgba(26, 10, 30, 0.5);
    --overlay-light: rgba(26, 10, 30, 0.2);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-ui: 'DM Sans', 'Segoe UI', sans-serif;
    --header-height: 80px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --container: 1340px;
    --gap: 40px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    background: var(--plum-deep);
    color: var(--cream);
    overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--cream);
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--cream-muted); }

/* ═══════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }

.section-label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champagne);
    margin-bottom: 12px;
    display: block;
}

.section-title {
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--cream-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-subtitle.centered {
    margin: 0 auto 50px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
}

.btn-primary {
    color: var(--champagne);
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--champagne);
}

.btn-primary:hover {
    background: var(--champagne);
    color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
}

.btn-secondary {
    color: var(--plum-deep);
    background: var(--champagne);
    border-color: var(--champagne);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s var(--ease);
}

.btn-secondary:hover {
    background: var(--champagne-light);
    border-color: var(--champagne-light);
    color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.4);
}

.btn-secondary:hover::before { left: 100%; }

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.card {
    background: var(--plum-medium);
    border: 1px solid rgba(212, 168, 83, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 28px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cream);
}

.card-text {
    font-size: 0.95rem;
    color: var(--cream-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ═══════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    font-family: var(--font-ui);
    font-size: 15px;
    width: 100%;
    padding: 14px 20px;
    background: rgba(240, 230, 211, 0.06);
    border: 1px solid rgba(240, 230, 211, 0.15);
    border-radius: 10px;
    color: var(--cream);
    outline: none;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--champagne);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

textarea { resize: vertical; min-height: 140px; }

::placeholder { color: var(--cream-faint); }

/* ═══════════════════════════════════════════
   WORDPRESS DEFAULTS
   ═══════════════════════════════════════════ */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--cream-faint); margin-top: 8px; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes scrollDot {
    0%, 100% { transform: translate(-50%, 0); opacity: 1; }
    50% { transform: translate(-50%, 10px); opacity: 0.3; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 991px) {
    :root { --gap: 24px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .section-padding { padding: 70px 0; }
}

@media (max-width: 767px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section-padding { padding: 50px 0; }
}

@media (max-width: 575px) {
    :root { --gap: 18px; }
}
