:root {
    --bbdo-red: #ff0000;
    --white: #ffffff;
    --black: #000000;
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

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

img, video {
    max-width: 100%;
    height: auto;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-primary);
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

header.scrolled {
    padding: 0.5rem 3rem;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

header.on-dark {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    z-index: 1001;
}

.logo img {
    max-height: 45px;
    width: auto;
    transition: max-height 0.3s ease;
}

header.scrolled .logo img {
    max-height: 45px;
}

.logo a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

header.on-dark .logo a {
    color: var(--white)
}

.burger-menu {
    cursor: pointer;
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

header.on-dark .burger-line {
    background-color: var(--white);
}


.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #cc0000 0%, #660000 100%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 3.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.4s ease;
}

.menu-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.menu-content {
    width: 85%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.menu-left {
    flex: 1;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-link {
    font-size: 3rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.menu-link:hover {
    color: #ffcccc;
    transform: translateX(15px);
}

.menu-link.active {
    color: var(--white);
    background: linear-gradient(to right, #ff0000, transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

.menu-right {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 3rem;
}

.info-section h3 {
    font-size: 1.4rem;
    font-family: 'Nexa', sans-serif;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-section p {
    font-size: 1.1rem;
    font-family: 'Nexa', sans-serif;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #660000;
    background-color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    font-family: 'Nexa';
    font-weight: 900;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
    background-color: #ffcccc;
}


@media (max-width: 992px) {
    header {
        padding: 1.5rem 1rem;
    }

    .menu-content {
        flex-direction: column;
        gap: 3rem;
        width: 90%;
        padding: 6rem 0 3rem;
        height: 100%;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .menu-link {
        font-size: 2.2rem;
    }

    .menu-right {
        flex: none;
        width: 100%;
        flex-direction: column;
        gap: 2.5rem;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 1.5rem;
    }

    header.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .logo img {
        max-width: 140px;
        max-height: 35px;
    }

    .menu-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .menu-link {
        font-size: 1.8rem;
        letter-spacing: -1px;
    }

    .info-section h3 {
        font-size: 1.2rem;
    }

    .info-section p {
        font-size: 1rem;
    }
}






.contact-hero {
    height: 40vh;
    display: block;
    align-items: center;
    justify-content: left;
    background: black;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 8rem 2rem;
}

.contact-title {
    text-align: center;
    font-size: 3.5rem;
    font-family: 'Nexa';
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bbdo-red);
    animation: slideUp 1s ease-out both;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
    font-family: 'Nexa', sans-serif;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 1.5rem;
        height: auto;
    }
    .contact-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(1.1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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






.contact-section {
    padding: 6rem 0;
    background-color: var(--black);
    color: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.section-label {
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--bbdo-red);
    letter-spacing: 3px;
    margin-bottom: 2rem;
}

.info-title {
    font-size: 2.2rem;
    font-family: 'Nexa';
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.info-desc {
    font-size: 1.1rem;
    font-family: 'Nexa';
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.7;
    max-width: 450px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
}

.info-item {
    font-size: 1.5rem;
    color: var(--bbdo-red);
    margin-top: 5px;
}

.info-text p,
a {
    color: #fff;
    text-decoration: none;
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Nexa';
    font-weight: 900;
}

.info-text p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.8;
}









.contact-form-block {
    background-color: hwb(0 26% 74%);
    padding: 3.5rem;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #432727;
    background-color:hwb(240 76% 21%);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bbdo-red);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
}

.btn-submit{
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--bbdo-red);
    color: var(--white);
    padding: 0.8rem 1rem;
    border: none;
    font-family: 'Nexa';
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-submit a{
    color: white;
}

.btn-submit:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(204, 0, 0, 0.3);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-block {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-block {
        padding: 1.5rem;
    }
    .btn-submit {
        width: 100%;
    }
    .info-title {
        font-size: 1.8rem;
    }
}





.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
}

.map-container {
    width: 100%;
    height: 450px;
    background-color: #eee;
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 550;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) contrast(120%);
    transition: filter 0.3s ease;
}

@media (max-width: 768px) {
    .map-container iframe {
        filter: none !important;
    }
}

.map-container iframe:hover {
    filter: grayscale(0%);
}





.main-footer {
    background-color: #0d0d0f;
    color: var(--white);
    padding-top: 1rem;
    position: relative;
    z-index: 10;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 3rem 1rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 10rem;
}

.footer-headline {
    font-size: 1.5rem;
    font-family: 'Nexa';
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 3rem;
    color: #f0f0f0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    background-color: #1a1a1c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--bbdo-red);
    transform: translateY(-5px);
}

.footer-subtitle {
    font-size: 0.8rem;
    font-family: 'Nexa';
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bullet {
    color: var(--bbdo-red);
    font-size: 1rem;
}

.pill-links-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    max-width: 400px;
}

.btn-pill {
    padding: 0.3rem 0.8rem;
    background-color: #1a1a1c;
    color: #999;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.72rem;
    font-family: 'Nexa';
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 1.5rem;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .footer-headline {
        margin-bottom: 2rem;
    }
    
    .footer-subtitle {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.btn-pill:hover {
    background-color: #2a2a2c;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-info p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.footer-bottom {
    background-color: var(--bbdo-red);
    padding: 0.5rem 4rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.privacy-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}