/* ==========================================================================
   Footer Styles - Stoneberry Resort
   ========================================================================== */

/* Footer Glassmorphism Styles */
.site-footer {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    position: relative;
    margin-top: 1px;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--copper-tint) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: -1;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 60px 20px 10px;
}

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


.footer-section {
    text-align: left;
}

/* Logo Section Styles */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer-welcome-text {
    flex: 1;
}

.footer-welcome-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--copper-primary);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.footer-description {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--copper-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.footer-contact-section .footer-title {
    margin-top: 15px;
    
}


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

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

.footer-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-menu a:hover {
    color: var(--copper-primary);
    text-decoration: none;
}

.footer-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--copper-primary);
    transition: width 0.3s ease;
}

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

/* Contact Information Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    
}

.address-info,
        .phone-info,
        .email-info {
            display: flex;
            align-items: center;
            gap: 12px;
            
        }

.contact-icon {
    font-size: 18px;
    color: var(--copper-primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.5;
}

.contact-text a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--copper-primary);
}

/* Social Media Styles */
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--copper-primary); /* default icon color */
    font-size: 20px; /* adjust based on icon size */
    transition: color 0.3s ease, transform 0.3s ease;
  }
 
/* Lordicon specific styles */
.social-link lord-icon {
    display: block;
}

.contact-icon lord-icon {
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 25px;
    text-align: center;
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

/* Large Desktop */
@media (min-width: 1400px) {
    .footer-container {
        padding: 80px 40px 10px;
    }
    
    .footer-content {
        gap: 80px;
    }
}

/* Desktop */
@media (max-width: 1399px) and (min-width: 1200px) {
    .footer-container {
        padding: 70px 30px 35px;
    }
    
    .footer-content {
        gap: 70px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 40px 15px 20px;
    }

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

    .footer-section {
        text-align: center;
    }
    
    .footer-logo-section {
        grid-column: 1;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 75px;
    }
    
    .footer-welcome-title {
        font-size: 1.2rem;
    }
    
    .footer-description {
        font-size: 13px;
        text-align: center;
    }

    .address-info,
    .phone-info {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 10px 15px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 15px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link svg,
    .social-link lord-icon {
        width: 18px;
        height: 18px;
    }
    .address-info,
        .phone-info,
        .email-info {
            display: flex;
            align-items: center;
            gap: 12px;
            justify-content: center;
            
        }
}
