/* ===========================
   Monaco Solutions - Styles
   Professional Placeholder Site
   =========================== */

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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --light-text: #666;
    --bg-gray: #f4f4f4;
    --white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: fadeIn 0.5s ease-in;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 120px;
    height: 120px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
}

/* Main Content */
.main-content {
    padding: 40px 30px;
}

/* Relaunch Notice Section */
.relaunch-notice {
    background: #fafafa;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.relaunch-notice h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.relaunch-notice p {
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 1rem;
}

.coming-soon {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.contact-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    color: var(--light-text);
    margin-bottom: 10px;
}

.contact-email {
    margin-top: 15px;
}

.contact-email a {
    color: #555;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-email a:hover {
    color: #333;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--bg-gray);
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--accent-color);
}

.separator {
    color: var(--border-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal:target {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 700px;
    max-height: 85vh;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-lg);
    margin: 20px auto;
    animation: slideDown 0.3s ease;
    z-index: 1002;
    overflow-y: auto;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--light-text);
    text-decoration: none;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 600;
    border-bottom: 3px solid #999;
    padding-bottom: 10px;
}

.modal-content h3 {
    color: #555;
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.modal-content h4 {
    color: #555;
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
}

.modal-content p {
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.modal-content a:hover {
    color: #333;
    text-decoration: underline;
}

.modal-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.modal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .main-content {
        padding: 30px 20px;
    }

    .relaunch-notice,
    .contact-section {
        padding: 20px;
    }

    .relaunch-notice h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 10px auto;
    }

    .modal-content h2 {
        font-size: 1.6rem;
    }

    .footer-links {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.6rem;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .relaunch-notice h2,
    .contact-section h2 {
        font-size: 1.3rem;
    }

    .contact-email a {
        font-size: 1rem;
    }

    .modal-content {
        padding: 25px 15px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        padding: 0;
    }

    .container {
        box-shadow: none;
    }

    .modal {
        display: none;
    }

    .footer-link {
        color: black;
    }
}
