/**
 * Hotel Pritika International
 * Premium Design System Variables & Foundation Style Guide
 */

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

:root {
    /* Color Palette: Premium Hospitality Phase 2 */
    --hotel-bg-primary: #FFFFFF;
    --hotel-bg-secondary: #FFF8F6;
    --hotel-bg-cream: #FFF4F7;
    --hotel-bg-dark: #8E1F4D;
    --hotel-text-primary: #222222;
    --hotel-text-muted: #666666;
    
    /* Brand Highlights */
    --hotel-primary: #C63E73;
    --hotel-primary-hover: #B12F64;
    --hotel-accent-gold: #E4C36A;
    --hotel-accent-gold-hover: #D4B35A;
    --hotel-accent-gold-light: #F9F1DC;
    
    /* Alert Status Palette */
    --hotel-success: #3BAA5C;
    --hotel-error: #D63A3A;
    --hotel-warning: #F5B942;
    --hotel-border-color: #F1D6E0;

    /* Typography & Hierarchy */
    --hotel-font-headings: 'Cormorant Garamond', Georgia, serif;
    --hotel-font-body: 'Inter', Helvetica, Arial, sans-serif;
    
    /* Spacing system (Base 8px) */
    --hotel-space-xs: 0.25rem;  /* 4px */
    --hotel-space-sm: 0.5rem;   /* 8px */
    --hotel-space-md: 1rem;     /* 16px */
    --hotel-space-lg: 1.5rem;   /* 24px */
    --hotel-space-xl: 2.5rem;   /* 40px */
    --hotel-space-xxl: 4.5rem;  /* 72px */

    /* Design Details */
    --hotel-radius-sm:  14px;
    --hotel-radius-md:  18px;
    --hotel-shadow-sm:  0 4px 16px rgba(0, 0, 0, 0.05);
    --hotel-shadow-md:  0 10px 40px rgba(0, 0, 0, 0.07);
    --hotel-transition-smooth: all 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--hotel-bg-primary);
    color: var(--hotel-text-primary);
    font-family: var(--hotel-font-body);
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.03em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hotel-font-headings);
    color: var(--hotel-text-primary);
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.3;
}

/* Section Spacing utilities */
.section-padding {
    padding-top: var(--hotel-space-xxl);
    padding-bottom: var(--hotel-space-xxl);
}

.section-title {
    text-align: center;
    margin-bottom: var(--hotel-space-xl);
}

.section-title h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: var(--hotel-space-md);
    text-transform: uppercase;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1.5px;
    background-color: var(--hotel-accent-gold);
}

.section-title p {
    font-size: 1rem;
    color: var(--hotel-text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: var(--hotel-space-sm);
}

/* Keyboard Focus States */
a:focus, button:focus, input:focus, textarea:focus, select:focus {
    outline: 2px solid var(--hotel-accent-gold);
    outline-offset: 3px;
}

/* Helper Utilities */
.hover-gold:hover {
    color: var(--hotel-accent-gold) !important;
}

.text-gold {
    color: var(--hotel-accent-gold) !important;
}

.text-primary-brand {
    color: var(--hotel-primary) !important;
}

.font-headings {
    font-family: var(--hotel-font-headings) !important;
}

.font-body {
    font-family: var(--hotel-font-body) !important;
}

.tracking-wide {
    letter-spacing: 0.15em;
}

.tracking-wider {
    letter-spacing: 0.2em;
}

.tracking-widest {
    letter-spacing: 0.3em;
}

.fs-7 {
    font-size: 0.85rem !important;
}

.fs-8 {
    font-size: 0.75rem !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* ==========================================
   FOOTER STYLING & READABILITY RESETS
   ========================================== */
.hotel-footer {
    background-color: #111111 !important;
    color: #E0E0E0 !important; /* Premium readable gray-white */
}

.hotel-footer p, 
.hotel-footer span, 
.hotel-footer li, 
.hotel-footer div {
    color: #B0B0B0 !important; /* Crisp secondary text */
}

.hotel-footer a {
    color: #B0B0B0 !important;
    transition: var(--hotel-transition-smooth);
}

.hotel-footer a:hover {
    color: var(--hotel-accent-gold) !important;
}

.hotel-footer .font-headings {
    color: var(--hotel-accent-gold) !important;
}

.hotel-footer .text-white {
    color: #FFFFFF !important;
}


