/* ==========================================================================
   Petek - Clean & Shadowless Landing Page
   Base Brand Color: #3b4664
   ========================================================================== */

:root {
    /* Brand Colors centered around #3b4664 */
    --brand-blue: #3b4664;
    --brand-blue-light: #4c5a80;
    --brand-blue-dark: #2a3248;
    
    --bg-main: #1f2535;
    --bg-surface: #2b3348;
    --bg-surface-hover: #333d55;
    --bg-icon: #232a3c;

    --border-color: #3b4664;
    --border-hover: #536289;
    
    /* Blush Rose Accent */
    --blush-rose: #ebb1a9;
    --blush-soft: rgba(235, 177, 169, 0.12);
    --blush-hover: #f4c4be;

    /* Typography & Neutrals */
    --text-primary: #ffffff;
    --text-secondary: #c0c9d8;
    --text-muted: #8591a6;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-full: 9999px;

    --transition: all 0.2s ease-in-out;
}

/* Explicitly zero shadows */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-shadow: none !important;
    text-shadow: none !important;
    filter: none !important;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-family);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Main Layout */
.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.content-wrapper {
    width: 100%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Brand Header */
.brand-header {
    margin-bottom: 2rem;
}

.brand-logo {
    width: 180px;
    max-width: 65vw;
    height: auto;
    display: block;
}

/* Minimal Hairline Divider */
.divider {
    width: 40px;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    margin-bottom: 2.5rem;
}

.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blush-rose);
    background-color: var(--blush-soft);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(235, 177, 169, 0.3);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 0.85rem;
}

.hero-description {
    font-size: 0.98rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* Contact List */
.contact-section {
    width: 100%;
    margin-bottom: 2.25rem;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: inherit;
    text-align: left;
    transition: var(--transition);
}

.contact-item:hover {
    background-color: var(--bg-surface-hover);
    border-color: var(--blush-rose);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--bg-icon);
    border: 1px solid var(--border-color);
    color: var(--blush-rose);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    border-color: var(--blush-rose);
    color: var(--blush-hover);
    background-color: var(--brand-blue-dark);
}

.contact-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.contact-val {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    word-break: break-word;
    transition: var(--transition);
}

.contact-item:hover .contact-val {
    color: #ffffff;
}

.contact-val-address {
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1.5;
}

.contact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.contact-item:hover .contact-arrow {
    color: var(--blush-rose);
    transform: translateX(3px);
}

/* Actions Section */
.actions-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

/* Blush Rose Button */
.btn-blush {
    background-color: var(--blush-rose);
    color: #1f2535;
    border: 1px solid var(--blush-rose);
}

.btn-blush:hover {
    background-color: var(--blush-hover);
    border-color: var(--blush-hover);
}

/* Brand Blue Button */
.btn-slate {
    background-color: var(--brand-blue);
    color: #ffffff;
    border: 1px solid var(--brand-blue-light);
}

.btn-slate:hover {
    background-color: var(--brand-blue-light);
    border-color: var(--border-hover);
}

/* Outlined Button */
.btn-outlined {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-outlined:hover {
    background-color: var(--bg-surface);
    border-color: var(--border-hover);
    color: #ffffff;
}

/* Footer */
.page-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
    .main-container {
        padding: 3rem 1.25rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .contact-item {
        padding: 0.9rem 1rem;
    }

    .actions-section {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
