/* Custom CSS - marloeventos.com */

/* Root styling variables */
:root {
    --color-brand: #98918b; /* Warm taupe / gray */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.85);
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --font-primary: 'Jost', sans-serif;
    --transition-speed: 0.3s;
}

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

html, body {
    height: 100%;
    width: 100%;
    font-family: var(--font-primary);
    background-color: #000000;
    color: var(--color-text-primary);
    overflow-x: hidden;
}

/* Background setup - Abstract, Text-free and Elegant */
body {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
        url('images/marlo_abstract_bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 3.5rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(2px);
}

/* Header */
.header {
    margin-top: 1rem;
    animation: fadeInDown 1s ease-out;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--color-text-primary);
    font-style: italic;
}

/* Main content */
.main-content {
    margin: 4rem 0;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.2s ease-out;
}

.seo-title {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3.5rem;
    color: var(--color-text-primary);
}

.coming-soon-container {
    margin-top: 2rem;
}

.subtitle-coming {
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-secondary); /* Same color as the paragraph below, as requested */
    margin-bottom: 0.75rem;
}

.status-msg {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer & Contacts */
.footer {
    width: 100%;
    max-width: 850px;
    animation: fadeInUp 1s ease-out;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Phone organization */
.phones-group {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.75rem;
}

.phone-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-primary);
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.location-name {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: 0.4rem;
}

.phone-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.phone-action .icon {
    width: 15px;
    height: 15px;
    stroke: var(--color-text-muted);
    transition: stroke var(--transition-speed) ease;
}

.secondary-group {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
    padding: 0.4rem 0.8rem;
}

.contact-item .icon {
    width: 16px;
    height: 16px;
    stroke: var(--color-brand);
    transition: stroke var(--transition-speed) ease;
    flex-shrink: 0;
}

/* Hover effects */
.phone-card:hover {
    color: var(--color-brand);
    transform: translateY(-2px);
}

.phone-card:hover .phone-action .icon {
    stroke: var(--color-brand);
}

.contact-item:hover {
    color: var(--color-brand);
    transform: translateY(-2px);
}

.contact-item:hover .icon {
    stroke: var(--color-text-primary);
}

/* CSS Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* Tablet and Desktop Viewports adjustment */
@media (min-width: 768px) {
    .container {
        padding: 5rem 3rem;
    }

    .brand-name {
        font-size: 2.6rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .seo-title {
        font-size: 1.8rem;
        margin-bottom: 4rem;
    }
    
    .subtitle-coming {
        font-size: 1.3rem;
    }

    .status-msg {
        font-size: 1.05rem;
    }

    .phones-group {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
        padding-bottom: 1.5rem;
    }

    .secondary-group {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
    }
}
