@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary: #c5a059; /* Gold accent */
    --secondary: #ffffff; /* White background */
    --text-main: #000000;
    --text-muted: #555555;
    --glass: rgba(0, 0, 0, 0.04);
    --glass-border: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

/* Main Container */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.container {
    width: 100%;
    max-width: 1300px;
    text-align: center;
}

.brand-header {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.brand-logo {
    max-width: 140px;
    height: auto;
    filter: brightness(0) drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    margin-bottom: 0rem;
}

.logo-text {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: #000;
    text-transform: uppercase;
}

.brand-tagline {
    color: var(--text-main);
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Contact Card */
.contact-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 320px; 
    gap: 3rem;
    text-align: left;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,0.1);
    overflow: hidden;
    align-items: center; /* Back to center for vertical balance */
    max-width: 850px; /* Narrower to remove empty space */
    margin: 0 auto;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.video-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: none;
    display: block;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.contact-label {
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.phone-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-number:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.working-hours {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.address-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.map-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.map-link:hover {
    opacity: 1;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1400px) {
    .contact-card {
        padding: 2.5rem;
        gap: 2.5rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }

    .video-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .contact-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.2rem;
        gap: 1.5rem;
        border-radius: 24px;
    }

    .video-wrapper {
        height: 500px;
        max-width: 300px;
        margin: 0 auto;
        order: -1; /* Video shows on top in mobile */
    }
    
    .phone-number {
        font-size: 1.6rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .brand-logo {
        max-width: 140px;
    }
}
