/* Color Variables */
:root {
    --background: #fffcf5;
    --menu-color: #fff2d8;
    --light-color: #fff9ee;
    --dark-color: #151311;
    --primary-color: #8f3000;
    --accent-color: #f7ae45;
    --success-color: #564f11;
    --grey-color: #69625c;
    --border-color: rgba(105, 98, 92, 0.25);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--background);
    min-height: 100vh;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.construction-wrapper {
    background: var(--light-color);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(21, 19, 17, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

/* Logo section */
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
}

.logo-image {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(21, 19, 17, 0.1));
}

/* Main content */
.main-content {
    margin-bottom: 2rem;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--grey-color);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Progress bar */
.progress-container {
    margin-bottom: 2.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    width: 75%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    animation: progressGlow 2s ease-in-out infinite alternate;
}

.progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

@keyframes progressGlow {
    0% {
        box-shadow: 0 0 5px rgba(143, 48, 0, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(143, 48, 0, 0.6);
    }
}

/* Contact section */
.contact-section {
    background: rgba(143, 48, 0, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.contact-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-section p {
    font-size: 1rem;
    color: var(--grey-color);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-email {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(143, 48, 0, 0.3);
}

.contact-email:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    color: var(--grey-color);
}

/* Background animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(143, 48, 0, 0.1);
    border-radius: 50%;
    animation: float var(--duration, 20s) var(--delay, 0s) infinite linear;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 10%;
    width: 40px;
    height: 40px;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 50%;
    width: 60px;
    height: 60px;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.4;
    }
    66% {
        transform: translateY(20px) rotate(240deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.4;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .construction-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.75rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .progress-fill,
    .floating-element {
        animation: none;
    }
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--border-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(143, 48, 0, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(143, 48, 0, 0.5);
}
