/* Footer Styles */
.main-footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(200, 170, 110, 0.3);
    padding: 80px 0 40px;
    margin-top: 0; /* ✅ FIXED - No gap before footer */
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    color: #d0d0d0;
}

.footer-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #C8AA6E;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #C8AA6E;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.footer-small {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #C8AA6E;
    padding-left: 5px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(200, 170, 110, 0.3);
    color: #C8AA6E;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #C8AA6E;
    color: #0a0a0a;
    border-color: #C8AA6E;
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(200, 170, 110, 0.2);
    text-align: center;
}

.footer-copyright {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: #C8AA6E;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: #C8AA6E;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

.footer-legal-links .separator {
    color: #666;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    max-width: 800px;
    margin: 15px auto 0;
}

/* Responsive Footer */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .footer-legal-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-legal-links .separator {
        display: none;
    }
}
/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo {
    height: 50px;
    width: auto;
        filter: brightness(1.1); /* Slightly brighter */

}

/* Adjust title margin if logo is present */
.footer-column .footer-logo-link + .footer-title {
    margin-top: 0.5rem;
}
/* Footer Logo - Centered */
.footer-logo-link {
    display: block; /* Changed from inline-block */
    text-align: center; /* Center the image */
    margin-bottom: 1rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.footer-logo {
    height: 65px;
    width: auto;
    display: inline-block; /* Needed for centering */
}

/* Center the title too */
.footer-column .footer-title {
    text-align: center;
    margin-top: 0.5rem;
}

/* And center the description text */
.footer-column .footer-text {
    text-align: center;
}
/* ========================================
   NOTIFICATION SECTION (Above Footer)
======================================== */

.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.1), rgba(180, 154, 94, 0.05));
    border-top: 1px solid rgba(200, 170, 110, 0.2);
    border-bottom: 1px solid rgba(200, 170, 110, 0.2);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: center;
}

.newsletter-icon {
    color: #C8AA6E;
}

.newsletter-icon svg {
    width: 48px;
    height: 48px;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.newsletter-title {
    font-family: 'Cinzel', serif;
    font-size: 1.75rem;
    color: #C8AA6E;
    margin-bottom: 0.5rem;
}

.newsletter-description {
    font-family: 'Lora', serif;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.notification-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C8AA6E, #B49A5E);
    color: #0a0a0a;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(200, 170, 110, 0.3);
}

.newsletter-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #d4b876, #C8AA6E);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 170, 110, 0.4);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-btn.notifications-enabled {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.newsletter-btn.notifications-enabled:hover {
    background: linear-gradient(135deg, #45a049, #3d8b40);
    transform: translateY(-2px);
}

.newsletter-btn.notifications-disabled {
    background: linear-gradient(135deg, #C8AA6E, #B49A5E);
    color: #0a0a0a;
}

.newsletter-btn.notifications-disabled:hover {
    background: linear-gradient(135deg, #d4b876, #C8AA6E);
    transform: translateY(-2px);
}

.notification-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Lora', serif;
    margin: 0;
    text-align: center;
}

.notification-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.notification-status svg {
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text {
        min-width: auto;
    }
    
    .newsletter-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}
/* Force pointer cursor for notification button */
.newsletter-btn {
    cursor: pointer !important;
}

/* Only show not-allowed cursor when actually disabled (during permission request) */
.newsletter-btn:disabled:not(.notifications-enabled):not(.notifications-disabled) {
    cursor: not-allowed !important;
    opacity: 0.7;
}

/* Enabled state - always clickable */
.newsletter-btn.notifications-enabled {
    cursor: pointer !important;
    opacity: 1;
}

/* Disabled state - also clickable (to enable) */
.newsletter-btn.notifications-disabled {
    cursor: pointer !important;
    opacity: 1;
}
/* Footer email styling */
.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    margin: 1rem 0;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: #c89b3c;
}

.footer-email-link svg {
    opacity: 0.7;
}

.footer-contact {
    margin: 1rem 0 1.5rem 0;
}

/* Inline contact style (Option 3) */
.footer-contact-inline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-contact-inline a {
    color: #c89b3c;
    text-decoration: none;
}

.footer-contact-inline a:hover {
    text-decoration: underline;
}