/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #D0B975;
    --secondary-color: #C5C9CE;
    --tertiary-color: #6b6445;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gray-color: #95a5a6;
    --text-color: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Raleway', Arial, sans-serif;
    background: linear-gradient(0deg, #1f1f1f 0%, #101010 100%);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(52, 152, 219, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(231, 76, 60, 0.05) 0%, transparent 20%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

/* Header Styles */
header {
    padding: 1.5rem 0;
    text-align: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.6;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: white;
    border-radius: 10px;
    padding: 1.2rem 1rem;
    min-width: 100px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

/* Contact Form */
.contact-section {
    margin: 3rem 0;
    max-width: 500px;
    width: 100%;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    position: relative;
}

input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e6ed;
    border-radius: 50px;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Footer */
footer {
    padding: 2rem 0 1.5rem;
    text-align: center;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem 0.3rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.7rem;
    }
}



/* Architectural Blueprint Grid Background */
body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(0deg, rgba(208, 185, 117, 0.03) 0px, rgba(208, 185, 117, 0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(208, 185, 117, 0.03) 0px, rgba(208, 185, 117, 0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(0deg, rgba(208, 185, 117, 0.05) 0px, rgba(208, 185, 117, 0.05) 2px, transparent 2px, transparent 80px),
        repeating-linear-gradient(90deg, rgba(208, 185, 117, 0.05) 0px, rgba(208, 185, 117, 0.05) 2px, transparent 2px, transparent 80px);
    z-index: -1;
    animation: blueprintGrid 30s linear infinite;
}

/* Animation for the blueprint grid */
@keyframes blueprintGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

/* Add subtle movement to main background */
body::before {
    animation: subtleMove 20s ease-in-out infinite;
}

@keyframes subtleMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(5px, 5px); }
    50% { transform: translate(0, 5px); }
    75% { transform: translate(5px, 0); }
}

/* Floating Building Elements */
.construction-element {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
    animation: floatingBuilding 15s infinite ease-in-out;
}

@keyframes floatingBuilding {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(2deg); opacity: 0.5; }
}

/* Add these to your HTML body with different positions and delays */
.construction-element:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 100px;
    height: 150px;
    background: rgba(208, 185, 117, 0.05);
}
.construction-element:nth-child(2) {
    top: 20%;
    right: 10%;
    width: 80px;
    height: 120px;
    background: rgba(208, 185, 117, 0.03);
    animation-delay: 2s;
}
.construction-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    width: 120px;
    height: 100px;
    background: rgba(208, 185, 117, 0.04);
    animation-delay: 4s;
}

/* Construction Lines Animation */
.construction-line {
    position: absolute;
    height: 2px;
    background: var(--tertiary-color);
    transform-origin: left;
    animation: drawLine 8s infinite ease-in-out;
}

@keyframes drawLine {
    0% { width: 0; opacity: 0; }
    20% { width: 100%; opacity: 1; }
    80% { width: 100%; opacity: 1; }
    100% { width: 100%; opacity: 0; }
}

.construction-line:nth-child(4) {
    top: 30%;
    left: 0;
    width: 20%;
    transform: rotate(45deg);
    animation-delay: 1s;
}
.construction-line:nth-child(5) {
    top: 60%;
    right: 0;
    width: 15%;
    transform: rotate(-30deg);
    animation-delay: 3s;
}

/* Construction Points */
.construction-point {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
        box-shadow: 0 0 5px rgba(208, 185, 117, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 0.3;
        box-shadow: 0 0 15px rgba(208, 185, 117, 0.6);
    }
}

.construction-point:nth-child(6) { top: 25%; left: 20%; animation-delay: 0.5s; }
.construction-point:nth-child(7) { top: 70%; right: 25%; animation-delay: 2s; }
.construction-point:nth-child(8) { bottom: 30%; left: 30%; animation-delay: 4s; }
.construction-point:nth-child(9) { bottom: 40%; right: 15%; animation-delay: 6s; }

