.custom-footer {
background: #4F5F3ACC;
    color: #EFECE6;
    padding: 100px 0 30px 0;
    position: relative;
    overflow: hidden;
}

/* Watermark */
.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(80px, 15vw, 180px);
    /* Responsive size */
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.05);
    z-index: 0;
    user-select: none;
}

.z-1 {
    z-index: 1;
}

/* Typography */
.brand-name {
    font-family: 'Instrument Serif', serif;
    color: #FFC249;
    font-size: 42px;
    font-style: italic;
    margin-bottom: 10px;
}

.footer-section-title {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.working-hours p {
    margin: 2px 0;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Social Icons */
.social-icons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.social-icons a {
    color: white;
    font-size: 1.3rem;
    margin: 0 8px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--text-accent);
}

.svg-social-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.social-icons a:hover .svg-social-icon{
    filter: brightness(0) saturate(100%) invert(78%) sepia(44%) saturate(679%) hue-rotate(346deg) brightness(101%) contrast(101%);
}

/* Bottom Line & Fruit */
.footer-line {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
    opacity: 1;
    /* width: 100%; */
    z-index: 2;
}

.copyright-container {
    position: relative;
    text-align: center;
    padding-top: 10px;
}

.fruit-img {
    position: absolute;
    left: -20px;
    /* Adjust based on your need */
    bottom: -10px;
    width: 140px;
    /* Adjust size */
    z-index: -3;
    opacity: 0.5;
}

.copyright-text {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.8;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    body, html {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .fruit-img {
        width: 80px;
        left: 0;
    }

    .custom-footer {
        padding-top: 60px;
    }
}

