:root {
    --primary-color: #ffffff;
    --highlight-color: #ff2a2a;
    --text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-color);
    background: url('MidtownHotel.jpeg') no-repeat center center/cover fixed;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

header {
    position: relative;
    z-index: 10;
    padding: 15px 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 5%;
}

.hotel-name {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 6px;
    margin-bottom: 5px;
    opacity: 0.95;
    text-shadow: var(--text-shadow);
    color: var(--primary-color);
}

.main-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 12vw, 12rem);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 0.85;
    text-shadow: var(--text-shadow);
    margin-bottom: 30px;
}

/* Contact Section Styles */
.contact-section {
    margin-bottom: 50px;
    width: 100%;
    max-width: 900px;
}

.contact-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 30px;
    border-radius: 4px;
    min-width: 280px;
}

.contact-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.contact-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    flex: 1;
    padding: 10px 15px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-call:hover {
    background: #fff;
    color: #000;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
}

.divider-container {
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
}

.divider {
    height: 4px;
    background-color: var(--primary-color);
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bottom-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin-bottom: 15px;
}

.countdown-container {
    text-align: center;
    width: 100%;
}

.section-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: var(--text-shadow);
}

.countdown {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.time-box {
    text-align: center;
    min-width: 100px;
}

.time-box span {
    display: block;
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    font-family: 'Bebas Neue', cursive;
    text-shadow: var(--text-shadow);
}

.time-box p {
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.time-box.highlight span {
    color: var(--highlight-color);
}

.bottom-divider {
    height: 20px;
    background-color: var(--primary-color);
    width: 100%;
    max-width: 900px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .content {
        padding: 40px 5%;
        overflow-y: auto;
    }

    body {
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    .hotel-name {
        font-size: 1.5rem;
    }

    .main-title {
        font-size: 4rem;
        margin-bottom: 25px;
    }

    .contact-cards {
        gap: 20px;
    }

    .contact-card {
        min-width: 100%;
        padding: 15px 20px;
    }

    .countdown {
        gap: 20px;
    }

    .time-box {
        min-width: 60px;
    }

    .time-box span {
        font-size: 45px;
    }
}