:root {
    --primary-brown: #2d1b14;
    --accent-gold: #c5a059;
    --text-light: #f5f5f7;
    --text-muted: #86868b;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #000;
    color: var(--text-light);
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('assets/chocolate-bg.png');
    background-size: cover;
    background-position: center;
    -webkit-font-smoothing: antialiased;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: 1;
}

header,
main,
footer {
    position: relative;
    z-index: 2;
    padding: 2rem 4rem;
}

/* Header Styles */
header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    height: 160px;
    width: auto;
    opacity: 0.95;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo:hover {
    opacity: 1;
    transform: scale(1.02);
}

/* Main Content Styles */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
}

.brand-title {
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1a6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(197, 160, 89, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(197, 160, 89, 0);
    }
}

/* Footer Styles */
footer {
    padding-bottom: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.info-item p {
    margin-bottom: 0.4rem;
}

.info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--text-light);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .brand-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        padding: 0;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
    }

    header,
    main,
    footer {
        padding: 2rem;
    }

    .brand-title {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}