/* ============================================
   VARIABLES
   ============================================ */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --beige: #E8DCC4;
    --accent-dark: #2a2a2a;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   TOP HEADER - SCROLLING TEXT
   ============================================ */
.top-header {
    background: var(--black);
    color: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.scrolling-text {
    display: flex;
    animation: scroll 20s linear infinite;
    white-space: nowrap;
}

.scrolling-text span {
    padding: 0 50px;
    display: inline-block;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 40px;
}

/* ============================================
   LOGO - STYLIZED
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--dark-gray);
    transition: var(--transition);
}

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.logo-text-main {
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--dark-gray);
    animation: fadeInLeft 0.8s ease-out;
}

.logo-text-of {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--gold);
    animation: fadeInRight 0.8s ease-out 0.1s both;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo:hover .logo-text-main {
    color: var(--gold);
    letter-spacing: 4px;
}

.logo:hover .logo-text-of {
    letter-spacing: 2px;
}

/* ============================================
   NAVIGATION MENU
   ============================================ */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ============================================
   NAV ICONS
   ============================================ */
.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-icon {
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dark-gray);
    transition: var(--transition);
    position: relative;
}

.nav-icon:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 80px;
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    box-sizing: border-box !important;
}

.footer-container {
    max-width: none !important;
    width: 100% !important;
    margin: 0 auto;
    padding: 0 5vw !important;
    box-sizing: border-box !important;
}

.footer-content {
    display: flex !important;
    flex-wrap: nowrap;
    justify-content: space-between !important;
    gap: 3vw !important;
    margin-bottom: 40px;
    width: 100% !important;
}

.footer-section {
    flex: 1 !important;
    min-width: 0 !important;
}

.footer-section {
    animation: fadeInUp 0.8s ease-out;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: var(--gold);
}

.footer-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--beige);
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact {
    color: #aaa;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact strong {
    color: var(--beige);
    display: block;
    margin-bottom: 5px;
}

.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--beige);
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .logo-text-main {
        font-size: 1.1rem;
    }
    
    .logo-text-of {
        font-size: 0.7rem;
    }
    
    .nav-icons {
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .scrolling-text span {
        padding: 0 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 12px 15px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
    
    .nav-icons {
        gap: 12px;
    }
    
    .nav-icon {
        font-size: 1rem;
    }
}
