/* ==========================================================================
   VELORE HOSPITALITY - Coming Soon Style
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    --color-bg-primary: #0a0c10;
    --color-gold: #c5a880;
    --color-gold-hover: #e0c69d;
    --color-text-light: #f7f8fa;
    --color-text-muted: #a0a5b0;
    --color-card-bg: rgba(15, 18, 24, 0.75);
    --color-border: rgba(197, 168, 128, 0.2);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html,
body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: var(--color-bg-primary);
    font-family: var(--font-body);
    color: var(--color-text-muted);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Background Setup */
body {
    position: relative;
    background-image: url('background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Premium Vignette Overlay */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 12, 16, 0.5) 0%, rgba(10, 12, 16, 0.9) 100%);
    z-index: 1;
}

/* Main Container Layout */
.coming-soon-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Center Content Card (Glassmorphic) */
.content-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    width: 100%;
    max-width: 680px;
    padding: 4rem 3.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: revealCard 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Brand Tagline Styling (Subtle Logo) */
.brand-tagline {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    margin-bottom: 1.25rem;
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.4s;
}

/* Main Elegant Heading (Prominent Coming Soon) */
.main-heading {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 400;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.6s;
}

/* Sub-text / Description */
.description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.7s;
}

/* Elegant Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.8s;
}

.divider-line {
    width: 60px;
    height: 1px;
    background-color: var(--color-border);
}

.divider-diamond {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    transform: rotate(45deg);
    margin: 0 12px;
}

/* Contact Section Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 0.9s;
}

/* Contact Link Button Item */
.contact-item {
    display: flex;
    align-items: center;
    text-align: left;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.25rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: var(--color-gold);
    background: rgba(197, 168, 128, 0.06);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Icon style */
.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
    background: var(--color-gold);
}

.contact-item:hover .contact-icon svg {
    color: var(--color-bg-primary);
}

/* Text inside items */
.contact-info {
    display: flex;
    flex-direction: column;
}

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

.contact-value {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-value {
    color: var(--color-gold-hover);
}

/* Footer Section */
.footer-note {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    width: calc(100% - 3rem);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes revealCard {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 768px) {
    .content-card {
        padding: 3rem 2rem;
    }

    .main-heading {
        font-size: 2.2rem;
    }

    .description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .contact-item {
        padding: 1rem 1.25rem;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        margin-right: 1rem;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-value {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .content-card {
        padding: 2.5rem 1.25rem;
    }

    .main-heading {
        font-size: 1.85rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }

    .contact-value {
        font-size: 0.85rem;
    }
}