:root {
    --primary-gold: #D4AF37;
    --deep-charcoal: #1A1A1A;
    --crisp-white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--deep-charcoal);
    color: var(--crisp-white);
    overflow: hidden; /* Single page immersive layout */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.1s ease-out;
    transform: scale(1.1); /* To allow for parallax movement without edges */
}

.logo {
    height: 250px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

/* Main Content */
.hero-content {
    z-index: 1;
    animation: fadeIn 1.5s ease-out;
}

.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 2px;
    background: linear-gradient(to bottom, #fff, var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.sub-heading {
    font-size: 1.2rem;
    letter-spacing: 12px;
    color: var(--primary-gold);
    margin-bottom: 40px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Glassmorphic Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 25px;
}

/* Open 24 Hours Badge */
.status-badge {
    margin-top: 10px;
    padding: 10px 20px;
    background: rgba(0, 255, 127, 0.1);
    border: 1px solid rgba(0, 255, 127, 0.3);
    border-radius: 50px;
    color: #00FF7F;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: center;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.2);
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #00FF7F;
    border-radius: 50%;
    display: inline-block;
    animation: glow 1.5s infinite ease-in-out;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 30px;
    width: 100%;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out;
}

.signature {
    margin-top: 5px;
}

.signature a {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .sub-heading {
        font-size: 0.9rem;
        letter-spacing: 8px;
    }

    .glass-card {
        padding: 25px;
    }

    .logo {
        height: 150px;
    }
}
