/* ==========================================================================
   Design System & Variable Declarations
   ========================================================================== */
:root {
    /* Color Palette */
    --gold-primary: #c39b62;
    --gold-light: #f3e0b5;
    --gold-dark: #8c6239;
    --dark-primary: #2d160f;
    --dark-bg: #120603;
    
    --cream-light: #faf6ee;
    --cream-dark: #f4ebd9;
    --text-primary: #f4ebd9;
    --text-muted: #bca085;
    
    /* Card / Glassmorphism */
    --card-bg: rgba(28, 14, 9, 0.85);
    --card-border: rgba(195, 155, 98, 0.25);
    --card-shadow: rgba(0, 0, 0, 0.6);
    
    /* Animation Timings */
    --transition-speed: 0.35s;
    --easing: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   Resets & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   Background Animation (Ken Burns)
   ========================================================================== */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hotel_background.png');
    background-size: cover;
    background-position: center;
    animation: kenBurns 36s ease-in-out infinite alternate;
    will-change: transform;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(18, 6, 3, 0.4) 0%, rgba(18, 6, 3, 0.95) 90%);
    z-index: -1;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.12) translate(-1.5%, -0.5%);
    }
}

/* ==========================================================================
   Layout Wrapper
   ========================================================================== */
.main-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}


/* ==========================================================================
   The Main Card
   ========================================================================== */
.card {
    width: 100%;
    max-width: 720px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: 0 20px 50px var(--card-shadow);
    border-radius: 4px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 50px 45px 35px 45px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

/* Card inner decorative frame line */
.card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(195, 155, 98, 0.18);
    pointer-events: none;
    z-index: 1;
}

/* Corner Vector Ornaments */
.corner-decor {
    position: absolute;
    width: 45px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.top-left {
    top: 10px;
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3E%3Cpath d='M 5 35 L 5 5 C 5 5, 5 5, 35 5 M 11 30 L 11 11 L 30 11' fill='none' stroke='%23c39b62' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='5' cy='5' r='1.5' fill='%23c39b62'/%3E%3C/svg%3E");
}

.top-right {
    top: 10px;
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3E%3Cpath d='M 40 35 L 40 5 C 40 5, 40 5, 10 5 M 34 30 L 34 11 L 15 11' fill='none' stroke='%23c39b62' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='5' r='1.5' fill='%23c39b62'/%3E%3C/svg%3E");
}

.bottom-left {
    bottom: 10px;
    left: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3E%3Cpath d='M 5 10 L 5 40 C 5 40, 5 40, 35 40 M 11 15 L 11 34 L 30 34' fill='none' stroke='%23c39b62' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='5' cy='40' r='1.5' fill='%23c39b62'/%3E%3C/svg%3E");
}

.bottom-right {
    bottom: 10px;
    right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45 45'%3E%3Cpath d='M 40 10 L 40 40 C 40 40, 40 40, 10 40 M 34 15 L 34 34 L 15 34' fill='none' stroke='%23c39b62' stroke-width='1.2' stroke-linecap='round'/%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23c39b62'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Logo & Branding Section
   ========================================================================== */
.logo-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.hotel-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(195, 155, 98, 0.2));
    margin-bottom: 15px;
    transition: transform var(--transition-speed) var(--easing);
}

.hotel-logo:hover {
    transform: scale(1.04) rotate(1deg);
}

/* ==========================================================================
   Announcement Text
   ========================================================================== */
.announcement-section {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-light);
    border: 1px solid rgba(195, 155, 98, 0.3);
    padding: 4px 16px;
    border-radius: 30px;
    background: rgba(195, 155, 98, 0.05);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.main-heading {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 8px;
    font-weight: 600;
    padding: 0 10px;
}

.sub-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold-primary);
    font-style: italic;
    font-weight: 400;
}

/* ==========================================================================
   Countdown Timer Section
   ========================================================================== */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.countdown-box {
    flex: 1;
    max-width: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(195, 155, 98, 0.12);
    border-radius: 4px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: border-color var(--transition-speed) var(--easing), transform var(--transition-speed) var(--easing);
}

.countdown-box:hover {
    border-color: rgba(195, 155, 98, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.countdown-value {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.1;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(195, 155, 98, 0.3);
}

.countdown-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   About Paragraph
   ========================================================================== */
.about-snippet {
    position: relative;
    z-index: 2;
    margin-bottom: 35px;
    border-top: 1px solid rgba(195, 155, 98, 0.1);
    border-bottom: 1px solid rgba(195, 155, 98, 0.1);
    padding: 20px 10px;
}

.about-snippet p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--cream-dark);
}

/* ==========================================================================
   Contact Cards & Grid
   ========================================================================== */
.contact-section {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
    text-align: left;
}

.contact-title {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.contact-card.full-width {
    grid-column: span 2;
}

.contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(195, 155, 98, 0.1);
    border-radius: 4px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) var(--easing);
}

.contact-card:hover {
    background: rgba(195, 155, 98, 0.05);
    border-color: rgba(195, 155, 98, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.contact-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(195, 155, 98, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.05rem;
    color: var(--gold-light);
    margin-right: 14px;
    transition: transform var(--transition-speed) var(--easing), background-color var(--transition-speed) var(--easing);
    flex-shrink: 0;
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(-8deg);
    background: var(--gold-primary);
    color: var(--dark-bg);
}



/* Blue theme on hover for Location */
.contact-card:hover .contact-icon-wrapper.location {
    background: #4285f4;
    color: #fff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.contact-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-val {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.card-footer {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(195, 155, 98, 0.06);
    position: relative;
    z-index: 2;
}

.card-footer p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

@media (max-width: 650px) {
    .card {
        padding: 40px 25px 25px 25px;
    }
    
    .main-heading {
        font-size: 1.45rem;
    }
    
    .sub-heading {
        font-size: 1.1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card.full-width {
        grid-column: span 1;
    }
}
