/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Elements */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.bg-image {
    width: 100%;
    height: 100%;
    /* Standard Unsplash luxury architecture placeholder. You can swap this with a high-res Dubai skyline/villa image */
    background: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    filter: grayscale(30%) brightness(40%);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 30%, rgba(20, 20, 20, 0.7));
    z-index: -1;
}

/* Typography & Accent Color */
.gold-text {
    color: #c5a880; /* Elegant Champagne Gold */
    background: linear-gradient(45deg, #c5a880, #e6d5b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Layout */
.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 100vh;
    padding: 3rem 2rem;
    text-align: center;
}

/* Header / Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    letter-spacing: 4px;
}

.logo i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    -webkit-text-fill-color: initial; /* allow gradient icon if supported */
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
}

.brand-sub {
    font-size: 0.8rem;
    font-weight: 300;
    color: #a6a6a6;
    margin-top: 2px;
}

/* Main Section */
.main-content {
    max-width: 700px;
    margin: auto 0;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 3rem;
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.time-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 4px;
    min-width: 85px;
    padding: 1rem 0.5rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 168, 128, 0.6);
}

.time-box span {
    font-size: 2rem;
    font-weight: 600;
    display: block;
    color: #ffffff;
}

.time-box p {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #a6a6a6;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Notification Form */
.notify-form {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.notify-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: inherit;
    transition: border 0.3s ease;
}

.notify-form input:focus {
    border-color: #c5a880;
}

.notify-form button {
    background: linear-gradient(45deg, #c5a880, #a88e63);
    color: #0d0d0d;
    border: none;
    padding: 0 2rem;
    font-family: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-form button:hover {
    background: linear-gradient(45deg, #e6d5b8, #c5a880);
}

/* Footer Section */
footer {
    width: 100%;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.85rem;
    color: #a6a6a6;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-info i {
    margin-right: 6px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #c5a880;
    transform: scale(1.1);
}

.copyright {
    font-size: 0.75rem;
    color: #555555;
    letter-spacing: 0.5px;
}

/* Responsive Media Queries */
@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .countdown-container {
        gap: 0.75rem;
    }
    
    .time-box {
        min-width: 70px;
        padding: 0.75rem 0.25rem;
    }
    
    .time-box span {
        font-size: 1.5rem;
    }
    
    .notify-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .notify-form input, 
    .notify-form button {
        border-radius: 4px;
        padding: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.75rem;
    }
}