/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: auto;
    margin-right: 0.75rem;;
}


.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E91E63;
    margin-left: 0.75rem;
}

.desktop-nav {
    display: none;
}

.mobile-nav {
    display: block;
}

.nav-link {
    text-decoration: none;
    color: #E91E63;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #FCE4EC;
    color: #C2185B;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 140px);
}

.construction-section {
    width: 100%;
    padding: 2rem 0;
}

.construction-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

/* Construction Icon */
.construction-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    color: #E91E63;
    animation: pulse 2s ease-in-out infinite;
}

.construction-icon svg {
    width: 100%;
    height: 100%;
}

/* Typography */
.construction-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E91E63;
    margin-bottom: 1rem;
}

.construction-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Status Card */
.status-card {
    background: #f8f9fa;
    border: 2px solid #FCE4EC;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.status-icon {
    width: 48px;
    height: 48px;
    color: #E91E63;
    flex-shrink: 0;
}

.status-icon svg {
    width: 100%;
    height: 100%;
}

.status-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #E91E63;
    margin-bottom: 0.5rem;
}

.status-content p {
    color: #666;
    margin: 0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: #E91E63;
    color: white;
}

.btn-primary:hover {
    background: #C2185B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-outline {
    background: transparent;
    color: #E91E63;
    border: 2px solid #E91E63;
}

.btn-outline:hover {
    background: #E91E63;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Quick Info */
.quick-info {
    background: #FCE4EC;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: left;
}

.quick-info p {
    font-weight: 600;
    color: #E91E63;
    margin-bottom: 1rem;
    text-align: center;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E91E63;
    font-weight: bold;
}

.info-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-list a:hover {
    color: #E91E63;
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}


.footer-logo-img {
    width: 100px;
    height: auto;
    margin-right: 0.75rem;
}

.footer-text {
    color: #666;
    font-size: 0.875rem;
    text-align: center;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (min-width: 640px) {
    .action-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .status-card {
        text-align: center;
        flex-direction: column;
    }

    .status-content {
        text-align: center;
    }

    .info-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }

    .mobile-nav {
        display: none;
    }

    .construction-title {
        font-size: 3rem;
    }

    .construction-subtitle {
        font-size: 1.5rem;
    }

    .construction-icon {
        width: 120px;
        height: 120px;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .construction-title {
        font-size: 3.5rem;
    }

    .status-card {
        flex-direction: row;
        text-align: left;
    }

    .status-content {
        text-align: left;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}