/* Luxuria Premium Styles V2 - Editorial Luxury */
:root {
    /* Palette: Midnight & Champagne */
    --color-bg: #F9F9F7;
    /* Warm white/stone */
    --color-text: #1a1a1a;
    --color-accent: #C5A059;
    /* Muted Gold */
    --color-accent-hover: #A3803B;
    --color-dark: #0F1419;
    /* Soft Black */
    --color-overlay: rgba(15, 20, 25, 0.3);
    --color-surface: #ffffff;

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing & Layout */
    --container-max: 1400px;
    --spacing-xs: 1rem;
    --spacing-sm: 2rem;
    --spacing-md: 4rem;
    --spacing-lg: 8rem;
    --spacing-xl: 12rem;

    /* Animation */
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;1,400;1,600&display=swap');

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography Scale */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-dark);
    margin: 0 0 1rem 0;
    line-height: 1.1;
}

.lux-h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.02em;
}

.lux-h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
}

.lux-h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
}

.lux-eyebrow {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    display: block;
}

/* Layout Utilities */
.lux-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.lux-grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.lux-section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

/* Components: Buttons */
.lux-btn {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 2.5rem;
    border: 1px solid var(--color-dark);
    background: transparent;
    color: var(--color-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.lux-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
    z-index: -1;
}

.lux-btn:hover {
    color: var(--color-white);
    border-color: var(--color-dark);
}

.lux-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.lux-btn-gold {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.lux-btn-gold::before {
    background: var(--color-accent);
}

.lux-btn-gold:hover {
    color: var(--color-white);
}

/* Components: Cards (Magazine Style) */
.lux-card {
    position: relative;
    display: block;
    group: hover;
}

.lux-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.lux-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.lux-card:hover .lux-card-img img {
    transform: scale(1.1);
}

.lux-card-content {
    padding-top: 1.5rem;
}

.lux-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.lux-card:hover .lux-card-title {
    color: var(--color-accent);
}

/* =========================================
   Specialized Page Components
   ========================================= */

/* Steps / Timeline (Travel Planning) */
.lux-steps {
    counter-reset: step-counter;
}

.lux-step-item {
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 6rem;
}

.lux-step-item::before {
    counter-increment: step-counter;
    content: "0" counter(step-counter);
    position: absolute;
    left: 0;
    top: 2rem;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.5;
}

/* Definition List (Contact) */
.lux-contact-details dt {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #999;
    margin-top: 1.5rem;
}

.lux-contact-details dd {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0.5rem 0 0 0;
    color: var(--color-dark);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-text {
    animation: fadeInUp 1s var(--ease-out-expo) forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* =========================================
   Astra Theme Overrides (Force Full Width)
   ========================================= */
/* Only target the main content container, NOT the header container */
body.home #content.site-content,
body.home #content .ast-container {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

body.home #primary {
    margin: 0 !important;
}

/* Fix header overlap if needed */
.ast-header-break-point .site-header {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .lux-grid-12 {
        display: flex;
        flex-direction: column;
    }

    .lux-section {
        padding: var(--spacing-md) 0;
    }
}