/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=ADLaM+Display&display=swap');
@import url('https://fonts.cdnfonts.com/css/aptos');
@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-text-pro');

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

:root {
    --royal-purple: #7851a9;
    --royal-purple-dark: #5e3d8c;
    --royal-purple-light: #9d7fcc;
    --light-bg: #ffffff;
    --text: #333333;
    --text-light: #666666;
}

/* Font assignments */
.company-name {
    font-family: 'ADLaM Display', cursive;
}

.slogan {
    font-family: 'Aptos', sans-serif;
    font-weight: bold;
}

/* Base Styles */
body {
    font-family: 'Neue Haas Grotesk Text Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--light-bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    padding: 50px 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(120, 81, 169, 0.15);
    position: relative;
    overflow: hidden;
}

/* Logo Section */
.logo-container {
    margin-bottom: 50px;
    position: relative;
}

.company-name {
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--royal-purple);
    text-transform: lowercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.slogan {
    font-size: 1.8rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
    position: relative;
    margin-top: 15px;
}

.slogan::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--royal-purple), transparent);
}

/* Message Section */
.message-container {
    margin: 50px 0;
    padding: 0 20px;
}

.message {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 30px;
}

/* Contact Section */
.contact-container {
    margin: 40px 0;
    padding: 0;
    display: inline-block;
}

.contact-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--royal-purple);
    font-weight: 600;
}

.contact-email {
    font-size: 1.8rem;
    color: var(--royal-purple);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid var(--royal-purple-light);
}

.contact-email:hover {
    background: var(--royal-purple);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(120, 81, 169, 0.2);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--royal-purple);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Status Section */
.status {
    margin: 40px 0 30px;
    font-size: 1.1rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.status::before, .status::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--royal-purple), transparent);
}

.status::before {
    right: 100%;
}

.status::after {
    left: 100%;
}

/* Footer */
.footer {
    margin-top: 50px;
    font-size: 1rem;
    color: var(--text-light);
}

/* Decorative Elements */
.decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px dashed var(--royal-purple-light);
    border-radius: 50%;
    opacity: 0.3;
}

.dec-1 {
    top: -100px;
    left: -100px;
}

.dec-2 {
    bottom: -100px;
    right: -100px;
}

.dec-3 {
    top: 50%;
    right: 20px;
    width: 100px;
    height: 100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .slogan {
        font-size: 1.4rem;
    }
    
    .message {
        font-size: 1.0rem;
    }
    
    .contact-email {
        font-size: 1.4rem;
        padding: 12px 20px;
    }
    
    .decoration {
        display: none;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 2.5rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .contact-email {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .message {
        font-size: 0.9rem;
    }
}

