/* Footer */
.footer {
    background-color: #080a0d;
    background-image: url('/Images/background%20Footer%20(1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 80px;
    color: #c8cdd8;
    font-family: var(--font-body);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

/* Dark overlay to mix with the background image */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.footer .container {
    max-width: 100%;
    width: 100%;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

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

/* Brand Column */
.brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #f8f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 10px;
    border: 2px solid #ffffff;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}



.footer-desc {
    color: #9da3ae;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.follow-us p {
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.social-icons a {
    color: #c8cdd8;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: color 0.3s ease, transform 0.2s ease;
    opacity: 0.85;
}

.social-icons a:hover {
    color: #c9a86c;
    opacity: 1;
    transform: translateY(-2px);
}

/* Footer Links & Headings */
.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #ffffff;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: #9da3ae;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: #c9a86c;
    text-decoration: none;
    padding-left: 6px;
}

/* Newsletter */
.newsletter-col p {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    align-items: center;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 108, 0.25);
    color: #e2e6ef;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    border-color: rgba(201, 168, 108, 0.6);
    box-shadow: 0 0 0 2px rgba(201, 168, 108, 0.1);
}

.newsletter-form input::placeholder {
    color: #5a6170;
}

.newsletter-form button {
    padding: 12px 25px;
   background:linear-gradient(135deg, #5A3323, #3C1E12);
    color: #e0c080;
    border: none;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-family: var(--font-heading);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #5A3323, #3C1E12);
    box-shadow: 0 4px 16px rgba(201, 168, 108, 0.35);
}

.newsletter-toast{
  margin-top:12px;
  font-size:0.8rem;
  display:none;
  padding:10px 12px;
  border-radius:6px;
}

.newsletter-toast.success{
  display:block;
  color:#4ade80;
  background:rgba(34,197,94,0.1);
  border:1px solid rgba(34,197,94,0.25);
}

.newsletter-toast.error{
  display:block;
  color:#f87171;
  background:rgba(239,68,68,0.1);
  border:1px solid rgba(239,68,68,0.25);
}

/* Timings */
.footer-timings {
    text-align: right;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(201, 168, 108, 0.12);
    padding: 30px 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6b7480;
}

.footer-links a {
    color: #6b7480;
    margin-left: 25px;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .footer .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer .container {
        padding: 0 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-links a {
        margin-left: 10px;
        margin-right: 10px;
    }

    .footer-timings {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer .container {
        padding: 0 14px;
    }

    .footer-links a {
        margin-left: 8px;
        margin-right: 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer {
        padding-top: 45px;
    }

    .footer .container {
        padding: 0 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .footer {
        padding-top: 35px;
    }

    .footer .container {
        padding: 0 12px;
    }

    .footer-bottom {
        padding-bottom: 25px;
    }
}