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

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========== HEADER ========== */
#main-header {
    background: #161616;
    padding: 8px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 1px 0 rgba(0,0,0,.1);
    transition: all 0.4s ease-in-out;
}

#main-header.scrolled {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 5px 0;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    transition: all 0.4s ease-in-out;
}

#main-header.scrolled .logo img {
    max-height: 40px;
}

/* Navigation */
#top-menu {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
}

#top-menu li {
    position: relative;
}

#top-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -11px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.35);
}

#top-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

#top-menu a:hover,
#top-menu a.active {
    opacity: 0.7;
    color: #833834;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #601f1b;
    font-size: 32px;
    cursor: pointer;
}

/* ========== FOOTER ========== */
#main-footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #161616 100%);
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

#main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #601f1b, transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
}

.footer-tagline {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.footer-heading {
    color: #601f1b;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #601f1b;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #601f1b;
    margin-top: 2px;
}

.footer-contact li span {
    flex: 1;
}

.social-icons-new {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(96, 31, 27, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(96, 31, 27, 0.3);
}

.social-link:hover {
    background: rgba(96, 31, 27, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(96, 31, 27, 0.4);
}

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0.8) sepia(1) hue-rotate(330deg) saturate(2);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(1) sepia(1) hue-rotate(330deg) saturate(3);
}

.follow-text {
    color: #666;
    font-size: 13px;
    font-style: italic;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin-bottom: 30px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-info {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-second-info {
    color: #666;
    font-size: 12px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    #top-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #161616;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    #top-menu.mobile-active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto 15px;
    }

    .footer-links a:hover {
        transform: none;
    }

    .social-icons-new {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
}

/* ========== UTILITY CLASSES ========== */
.page-header {
    margin-top: 100px;
    padding: 100px 0;
    text-align: center;
    background: #000;
    position: relative;
}

.page-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -2px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 42px;
    }
}