/* ================================================================
   MODERN FOOTER - MOBILE OPTIMIZED
   ================================================================ */
.tgt-footer-modern {
    min-height: auto;
    padding: var(--tgt-section-spacing) var(--tgt-container-padding) clamp(20px, 4vw, 40px);
    color: var(--tgt-white);
    margin-top: var(--tgt-content-spacing);
    /* IMPROVEMENT: Added comment to explain the full-bleed technique. */
    /* This technique makes the section span the full viewport width, breaking out of a constrained parent container. */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tgt-footer-modern .tgt-hero-container {
    max-width: 1300px;
}

/* Main Footer Grid */
.tgt-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: clamp(25px, 6vw, 50px);
    padding-bottom: clamp(30px, 6vw, 60px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: clamp(25px, 5vw, 40px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .tgt-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tgt-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.tgt-footer-title {
    font-family: var(--tgt-font-heading);
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--tgt-gold);
    margin: 0 0 clamp(20px, 4vw, 25px) 0;
}

.tgt-footer-col p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 clamp(12px, 2.5vw, 15px) 0;
    font-size: clamp(0.9rem, 2.5vw, 0.95rem);
}

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

.tgt-footer-links li {
    margin-bottom: clamp(12px, 2.5vw, 15px);
}

.tgt-footer-links a,
.tgt-footer-contact-info a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--tgt-transition-fast);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.tgt-footer-links a:hover,
.tgt-footer-contact-info a:hover {
    color: var(--tgt-white);
    padding-left: 5px;
}

@media (max-width: 768px) {
    .tgt-footer-links a:hover {
        padding-left: 0;
    }
}

/* Newsletter Form in Footer */
.tgt-footer-col .tgt-newsletter-form {
    margin-top: clamp(20px, 4vw, 25px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 769px) {
    .tgt-footer-col .tgt-newsletter-form {
        flex-direction: row;
        gap: 0;
    }
}

.tgt-footer-col .tgt-newsletter-form input {
    width: 100%;
    padding: clamp(12px, 3vw, 14px) clamp(12px, 3vw, 15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0,0,0,0.2);
    color: var(--tgt-white);
    border-radius: 8px;
    font-family: var(--tgt-font-body);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

@media (min-width: 769px) {
    .tgt-footer-col .tgt-newsletter-form input {
        border-radius: 8px 0 0 8px;
    }
}

.tgt-footer-col .tgt-newsletter-form input:focus {
    outline: none;
    border-color: var(--tgt-gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3);
}

.tgt-footer-col .tgt-newsletter-form button {
    padding: clamp(12px, 3vw, 14px) clamp(15px, 4vw, 20px);
    border: none;
    background-color: var(--tgt-accent);
    color: var(--tgt-white);
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all var(--tgt-transition-normal);
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

@media (min-width: 769px) {
    .tgt-footer-col .tgt-newsletter-form button {
        border-radius: 0 8px 8px 0;
    }
}

.tgt-footer-col .tgt-newsletter-form button:hover {
    background-color: var(--tgt-gold);
    color: var(--tgt-primary);
    transform: translateY(-1px);
}

/* Footer Bottom Bar */
.tgt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(20px, 5vw, 30px);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .tgt-footer-bottom {
        flex-direction: column;
        gap: clamp(20px, 4vw, 25px);
    }
}

.tgt-copyright-text {
    margin: 0;
}

.tgt-footer-socials {
    display: flex;
    gap: clamp(15px, 3vw, 20px);
    order: 0;
}

@media (max-width: 768px) {
    .tgt-footer-socials {
        order: -1;
    }
}

.tgt-footer-socials a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--tgt-transition-normal);
    font-size: clamp(1.2rem, 3vw, 1.4rem);
}

.tgt-footer-socials a:hover {
    color: var(--tgt-white);
    transform: scale(1.1);
}

.tgt-footer-legal-links {
    display: flex;
    gap: clamp(20px, 4vw, 25px);
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 480px) {
    .tgt-footer-legal-links {
        flex-direction: column;
        gap: clamp(10px, 2vw, 15px);
    }
}

.tgt-footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--tgt-transition-fast);
    font-size: clamp(0.85rem, 2vw, 0.9rem);
}

.tgt-footer-legal-links a:hover {
    color: var(--tgt-white);
    text-decoration: underline;
}
Use code with caution.
Css
75.1s
Start typing a prompt

Run
Gemini 2.5 Pro