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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.construction-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-hearts {
    position: absolute;
    width: 100%;
    height: 100%;
}

.heart {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 16px;
    background: rgba(231, 76, 60, 0.6);
    border-radius: 10px 10px 0 0;
    transform: rotate(-45deg);
    transform-origin: 0 100%;
}

.heart::after {
    left: 10px;
    transform: rotate(45deg);
    transform-origin: 100% 100%;
}

.heart:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
}

.heart:nth-child(3) {
    top: 70%;
    left: 10%;
    animation-delay: 2s;
}

.heart:nth-child(4) {
    top: 60%;
    left: 90%;
    animation-delay: 3s;
}

.heart:nth-child(5) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Main Content */
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}


/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

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

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}


/* Typography */
.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.2;
}

.highlight {
    color: #e74c3c;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #7f8c8d;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Construction Message */
.construction-message {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid #e74c3c;
}

.construction-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}


.construction-message h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.construction-message p {
    color: #7f8c8d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Progress Section */
.progress-section {
    margin-bottom: 40px;
}

.progress-section h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.progress-bar {
    position: relative;
    background: #ecf0f1;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #e74c3c, #f39c12);
    height: 100%;
    width: 75%;
    border-radius: 10px;
    animation: progressAnimation 2s ease-out;
}

@keyframes progressAnimation {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Social Section */
.social-section {
    margin-bottom: 40px;
}

.social-section h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    position: relative;
}

.social-link.active:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.social-link.inactive {
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    cursor: not-allowed;
    opacity: 0.6;
}

.social-link.inactive:hover {
    transform: none;
    box-shadow: none;
}

.social-link.inactive::after {
    content: '🔒';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.7rem;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.social-link.active:has(.fa-facebook-f):hover {
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-link.active:has(.fa-instagram):hover {
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.3);
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 20px;
}

.newsletter-section h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    outline: none;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border: none;
    padding: 15px 20px;
    border-radius: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .construction-message {
        padding: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}
