body {
    margin: 0;
    overflow-x: hidden;
    background-color: #000;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150vh;
    z-index: -10;
    background-image: url('Assets/Images/Backgrounds/BG%20Home%20v2.jpg');
    background-size: cover;
    background-position: center top;
}

.container {
    position: relative;
    z-index: 1;
    color: white !important;
    padding-top: 10px;
    min-height: 145vh;
}

/* 1. THE FOOTER CONTAINER */
.main-footer {
    position: relative;
    width: 100%;
    background-image: url('Assets/Images/Assets/Header%20bar.png');
    background-size: cover;
    background-position: center;
    border-top: 1px solid #F1E5AC;
    box-shadow: 0px -4px 15px rgba(241, 229, 172, 0.2);
    font-family: 'Cinzel', serif;
    padding: 4vw 5vw 1.5vw 5vw;
    box-sizing: border-box;

    /* Add this z-index to make sure it sits above your parallax background */
    z-index: 10;
}

/* 2. THE 3-COLUMN LAYOUT */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3vw;
    margin-bottom: 3vw;
}

.footer-col {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

/* 3. COLUMN HEADERS */
.footer-col h4 {
    color: #F1E5AC;
    font-size: clamp(14px, 1.2vw, 20px);
    letter-spacing: 0.2vw;
    text-transform: uppercase;
    margin: 0 0 1.5vw 0;
    border-bottom: 1px solid rgba(241, 229, 172, 0.3);
    padding-bottom: 0.5vw;
}

/* 4. FOOTER LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer-col a {
    color: rgba(241, 229, 172, 0.7);
    text-decoration: none;
    font-size: clamp(12px, 0.8vw, 16px);
    letter-spacing: 0.1vw;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #FFD700;
    text-shadow: 0px 0px 8px rgba(255, 215, 0, 0.4);
}

/* 5. THE COPYRIGHT BAR */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(241, 229, 172, 0.2);
    padding-top: 1.5vw;
}

.footer-bottom p {
    color: rgba(241, 229, 172, 0.5);
    font-size: clamp(10px, 0.6vw, 14px);
    letter-spacing: 0.2vw;
    margin: 0;
    text-transform: uppercase;
}

/* CLEAN INLINE ICONS (No Filter) */
.inline-icon {
    height: 1.1em;

    /* Matches text height */
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 2px;

    /* Filter removed to show your Photoshop edits */
    transition: transform 0.3s ease;
}

/* Subtle pop on hover */
.footer-col a:hover .inline-icon {
    transform: scale(1.1);
}

/* 🚀 7. MOBILE RESPONSIVENESS */
@media (max-width: 1000px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }

    .footer-col h4 {
        border-bottom: none;
        margin-bottom: 15px;
    }

    .footer-col ul {
        gap: 15px;
    }

    .main-footer {
        padding-top: 40px;
    }
}
/* ========================================= */
/* HOME PAGE TEXTBOX */
/* ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:wght@400;600&display=swap');

.home-textbox {
    max-width: 800px;
    margin: 10vh auto;
    padding: 3vw 4vw;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(241, 229, 172, 0.4);
    box-shadow: 0px 0px 20px rgba(241, 229, 172, 0.2);
    text-align: center;
}

.home-textbox p {
    font-family: 'Crimson Text', serif;
    color: #F1E5AC;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.8;
    letter-spacing: 0.02vw;
    margin: 0 0 1.5vw 0;
}

.home-textbox p:last-child {
    margin-bottom: 0;
}