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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #D4A81E;
    overflow-x: hidden;
    position: relative;
    padding: 20px;
    margin: 0;
}

.logo-container {
    text-align: center;
    margin: 0;
}

.construction-page {
    padding: 0 2rem;
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.content {
    margin: 0 auto 0;
    padding: 1rem 1rem;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.logo {
    width: 140px;
    margin: 0 auto 1.5rem;
    display: block;
    padding: 12px;
    box-sizing: content-box;
}

/* Mobile styles */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .content {
        width: 100%;
        padding: 1rem 0;
    }

    .logo {
        width: 120px;
    }

    .construction-page {
        min-height: 100vh;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

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

@keyframes cloudMove {
    from { transform: translateX(-100%); }
    to { transform: translateX(100vw); }
}

.construction-page {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 0 1rem 2rem;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 100px);
    box-sizing: border-box;
    padding-top: 80px; /* Increased from 1rem to 80px */
    scroll-margin-top: 120px; /* Increased from 100px to 120px */
}

@media (max-width: 768px) {
    .construction-page {
        padding-top: 8vh;
        padding-bottom: 2rem;
    }
}

.logo-container {
    position: relative;
    display: inline-block;
}

.logo {
    width: 140px;
    height: auto;
    cursor: pointer;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.logo:hover {
    animation: none;
    transform: scale(1.05);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border: 2px solid rgba(212, 168, 30, 0.3);
    border-radius: 50%;
    animation: pulse 3s infinite;
    z-index: 1;
}

h1, h2, h3, p {
    color: #D4A81E;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
    position: relative;
}

h1 {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 1.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out 0.3s both;
}

.coming-soon {
    font-size: 1.1rem;
    font-weight: 600; /* Changed from 300 to 600 for bold text */
    margin: 1rem 0 1.5rem;
    color: #D4A81E;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(212, 168, 30, 0.2);
}

@keyframes underlinePulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

h1 {
    cursor: pointer;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

h1 {
    font-size: 1.375rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.message {
    font-size: 1rem;
    opacity: 0.7;
    font-weight: 400;
}

.construction-page h1,
.construction-page .message {
    color: #D4A81E !important;
}

/* Sky Animation */
.sky-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(5px);
    opacity: 0.3;
}

.cloud1 {
    width: 100px;
    height: 40px;
    top: 20%;
    animation: cloudMove 30s linear infinite;
}

.cloud2 {
    width: 150px;
    height: 60px;
    top: 40%;
    animation: cloudMove 45s linear infinite reverse;
    animation-delay: -15s;
}

.cloud3 {
    width: 80px;
    height: 30px;
    top: 70%;
    animation: cloudMove 35s linear infinite;
    animation-delay: -10s;
}

/* Mobile styles */
@media (max-width: 768px) {
    .mission-statement {
        padding: 1.5rem;
        margin: 1.5rem 1rem;
    }
    
    .mission-statement p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .mission-text {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
    
    .content {
        padding: 0.5rem;
    }
    
    .logo {
        width: 200px;
    }
    
    h1 {
        font-size: 1.5rem;
        margin: 1rem 0;
    }

}

/* Desktop styles */
@media (max-width: 768px) {
    h1 {
        font-size: 1.1rem;
    }
    
    .message {
        font-size: 0.8rem;
    }
    
    .logo {
        width: 120px;
    }
}

@keyframes gradient1 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100%) translateY(100%); }
}

@keyframes gradient2 {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100%) translateY(-100%); }
}

.construction-page {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 0;
}

.header-spacer {
    height: 60px; /* Increased from 40px */
    width: 100%;
    min-height: 60px; /* Increased from 40px */
}

@media (max-width: 768px) {
    .header-spacer {
        height: 320px; /* Increased from 30px */
        min-height: 320px; /* Increased from 30px */
    }
}

.content {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    max-width: 800px;
    margin: 1rem auto 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 168, 30, 0.1);
    position: relative;
    z-index: 2;
    width: 90%;
    box-sizing: border-box;
}

.mission-statement {
    background: rgba(0, 0, 0, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem auto 0;
    text-align: center;
    max-width: 800px;
    border: 1px solid rgba(212, 168, 30, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 30, 0.05), transparent);
    transition: 0.5s;
}

.mission-statement:hover::before {
    left: 100%;
}

.mission-statement h2 {
    font-size: 1.5rem;
    color: #D4A81E;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-statement p {
    font-size: 1.1rem;
    margin: 0 auto 2rem;
    line-height: 1.8;
    max-width: 700px;
}

.mission-text {
    font-size: 0.9rem !important;
    opacity: 0.9;
    line-height: 1.7 !important;
}

.address {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212, 168, 30, 0.3);
    text-align: center;
}

.address h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.address p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

.logo {
    width: 250px;
    height: auto;
    margin: 2rem auto;
    display: block;
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: white;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    opacity: 0.9;
}

.message {
    font-size: 1.25rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: white;
    font-family: 'Inter', sans-serif;
}
