/* ============================================
   FOOTER STYLES
   ============================================ */

/* Footer container */
footer {
    position: relative !important;
    background-color: #0a0a0a !important; /* neutral-950 */
    color: #f5f5f5 !important; /* neutral-100 */
    padding-top: 5rem !important;
    padding-bottom: 2.5rem !important;
    margin-top: 0 !important;
}

@media (min-width: 768px) {
    footer {
        padding-top: 6rem !important;
    }
}

@media (min-width: 1024px) {
    footer {
        padding-top: 7rem !important;
    }
}

/* Footer silhouette is now handled by separate component before footer - removed old styles */

/* Footer content */
footer .relative.z-10 {
    position: relative;
    z-index: 10;
}

/* Logo glow effect (enhanced) */
footer .logo-wrapper {
    position: relative;
    display: inline-block;
}

footer .logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -1.5rem;
    background: radial-gradient(circle, rgba(208, 168, 67, 0.15) 0%, transparent 70%);
    filter: blur(20px);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

footer .logo-wrapper:hover .animated-logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Text color styling */
footer .text-neutral-100 {
    color: #f5f5f5 !important;
}

footer .text-neutral-400 {
    color: #a3a3a3 !important;
}

footer .text-neutral-300 {
    color: #d4d4d4 !important;
}

footer .text-neutral-500 {
    color: #737373 !important;
}

/* Accent color */
footer .text-accent,
footer .text-\[\#D0A843\] {
    color: #D0A843 !important;
}

footer .hover\:text-accent:hover {
    color: #D0A843 !important;
}

/* Remove underlines from footer links */
footer a {
    text-decoration: none !important;
    transition: color 0.2s ease;
}

/* Footer menu styling */
footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer nav li {
    margin-bottom: 0.5rem;
}

/* Footer grid spacing */
footer .grid {
    margin-bottom: 2.5rem;
}

/* Footer bottom section */
footer .border-t {
    border-top: 1px solid rgba(38, 38, 38, 0.6); /* neutral-800/60 */
    padding-top: 1.5rem;
    margin-top: 2.5rem;
}

/* Footer bottom text styling */
footer .border-t p {
    color: #737373 !important; /* neutral-500 */
    font-size: 0.75rem !important;
    line-height: 1.5;
    margin: 0;
}

footer .border-t p + p {
    margin-top: 0.5rem;
}

/* Developer link styling */
footer .hover\:underline {
    text-decoration: none !important;
}

footer .hover\:underline:hover {
    text-decoration: underline !important;
}

/* Ensure proper text alignment */
footer .text-center {
    text-align: center;
}

/* Space utilities */
footer .space-y-2 > * + * {
    margin-top: 0.5rem;
}

footer .space-y-2 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

footer .mb-3 {
    margin-bottom: 0.75rem;
}

footer .mb-4 {
    margin-bottom: 1rem;
}

footer .mt-3 {
    margin-top: 0.75rem;
}

/* Container width */
footer .container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    footer {
        padding-top: 4rem !important;
    }
}

/* Ensure smooth transition from contact section to footer */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
}

/* ============================================
   LARGE BRAND TEXT ELEMENT
   ============================================ */

.footer-brand-large-wrapper {
    margin-top: 4rem;
    margin-bottom: 4rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .footer-brand-large-wrapper {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
}

@media (min-width: 1024px) {
    .footer-brand-large-wrapper {
        margin-top: 6rem;
        margin-bottom: 6rem;
    }
}

.footer-brand-large {
    /* Typography */
    font-size: 2.75rem;       /* 44px - mobile (reduced from 60px to prevent text cutoff) */
    font-weight: 700;
    text-align: center;
    letter-spacing: -0.025em; /* tracking-tight */
    line-height: 1;           /* leading-none */
    
    /* Color: Gold with 20% opacity */
    color: rgba(208, 168, 67, 0.2);
    
    /* Prevent text selection */
    user-select: none;
    -webkit-user-select: none;
    
    /* Reset margins */
    margin: 0;
    padding: 0;
}

/* Responsive sizes */
@media (min-width: 640px) {
    .footer-brand-large {
        font-size: 4.5rem;   /* 72px */
    }
}

@media (min-width: 768px) {
    .footer-brand-large {
        font-size: 6rem;     /* 96px */
    }
}

@media (min-width: 1024px) {
    .footer-brand-large {
        font-size: 8rem;     /* 128px */
    }
}