/* ============================================
   CONTACT PAGE - THE TAMTAM
   ============================================ */

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

:root {
    --purple: #C65BCF;
    --white: #FFFFFF;
    --black: #000000;
    --bg: #0a0a0a;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.9);
}

.header-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    text-decoration: none;
}

.header-logo img {
    height: 36px;
    width: auto;
}

.header-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    white-space: nowrap;
}

.header-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.5;
}

/* MAIN CONTENT */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 48px 60px;
}

/* Hero */
.contact-hero {
    margin-bottom: 80px;
}

.contact-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
}

/* Info Grid */
.contact-info {
    margin-bottom: 80px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.info-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.info-block p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.info-block a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: var(--purple);
}

/* Image */
.contact-image {
    margin-bottom: 60px;
}

.contact-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

/* FOOTER */
.contact-footer {
    padding: 28px 48px;
    display: flex;
    justify-content: flex-start;
}

.back-btn {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    color: var(--purple);
    transform: translateX(-4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header {
        padding: 16px 24px;
    }
    
    .header-logo img {
        height: 32px;
    }
    
    .header-tagline {
        font-size: 7px;
    }
    
    .contact-main {
        padding: 100px 24px 40px;
    }
    
    .contact-hero {
        margin-bottom: 60px;
    }
    
    .contact-info {
        margin-bottom: 60px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-block p {
        font-size: 16px;
    }
    
    .header-nav {
        gap: 20px;
    }
    
    .contact-footer {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .header-tagline {
        display: none;
    }
}