/* ============================================
   HEADER STYLES - Based on Bolt Design
   ============================================ */

/* Fixed Header with Glassmorphism */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo Section */
.site-branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.site-branding:hover {
    transform: translateY(-2px);
}

.logo-wrapper {
    position: relative;
}

.logo-glow {
    position: absolute;
    inset: 0;
    background: #2563eb;
    border-radius: 50%;
    filter: blur(16px);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.site-branding:hover .logo-glow {
    opacity: 0.5;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 2.5rem;
    color: #2563eb;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.site-branding:hover .logo-icon {
    transform: rotate(12deg);
}

.site-title-wrapper {
    display: flex;
    flex-direction: column;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1;
}

.site-tagline {
    font-size: 0.875rem;
    color: #2563eb;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.025em;
}

/* Navigation styles are in style.css */

/* ============================================
   FOOTER STYLES - Based on Bolt Design
   ============================================================================= */

.site-footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    width: 100%;
    display: block;
}

/* Footer Grid Layout - 3 Columns (First Column Wider) */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Widget Areas */
.footer-widget-area {
    display: block;
}

/* Footer Widget 1 - Wider Column */
.footer-widget-1 {
    max-width: 28rem;
}

/* Footer Widgets Styling */
.footer-widget {
    margin-bottom: 1.5rem;
}

.footer-widget:last-child {
    margin-bottom: 0;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1.5rem;
    text-transform: none;
}

/* Footer Lists */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 1rem;
}

.footer-widget ul li:last-child {
    margin-bottom: 0;
}

.footer-widget a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9375rem;
}

.footer-widget a:hover {
    color: #ffffff;
}

/* Footer Paragraph Text */
.footer-widget p {
    color: #d1d5db;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

/* Footer Brand Styling */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.brand-icon {
    width: 2rem;
    height: 2rem;
    font-size: 2rem;
    color: #60a5fa;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.875rem;
    color: #9ca3af;
    margin: 0;
}

/* Instagram Button / Social Buttons */
.instagram-btn,
.footer-widget .button,
.footer-widget .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    border: none;
}

.instagram-btn:hover,
.footer-widget .button:hover,
.footer-widget .wp-block-button__link:hover {
    background: linear-gradient(135deg, #db2777 0%, #7c3aed 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.instagram-btn i,
.footer-widget .button i {
    font-size: 1.25rem;
}

/* Contact Info Styling */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 1.25rem;
    font-size: 1.25rem;
    color: #60a5fa;
    margin-top: 0.125rem;
}

.contact-address {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-address p {
    margin: 0;
    color: #d1d5db;
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Footer Bottom Bar */
.footer-bottom {
    width: 100%;
    clear: both;
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    width: 100%;
}

.footer-bottom-widget {
    width: 100%;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.footer-bottom ul {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Mobile - Single Column */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-widget-1 {
        max-width: 100%;
    }
    
    .site-footer {
        padding: 3rem 0 0;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom ul {
        gap: 1rem;
    }
}
