/* Reset and Centering Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background: #4B5320; /* Military Green */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4vh 2vw;
    overflow-x: hidden;
}

/* Logo Container */
.logo-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1vh; /* Further reduced spacing below logo */
}

/* Logo Image */
#logo {
    width: 240vw; /* Tripled size */
    max-width: 1800px;
    height: auto;
    margin-bottom: 7vh; /* Reduced spacing for mobile */
}

/* Call Hover Text */
.call-hover-text {
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFD700;
    padding: 5px 10px;
    font-size: 2vh;
    border-radius: 5px;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInOut 2s infinite alternate ease-in-out;
}

/* Main Content Spacing */
.extra-text {
    margin: 3vh 0; /* Reduced spacing */
}

.extra-text h1, .extra-text h2 {
    font-size: 6vh;
    color: #C2B280;
    margin-bottom: 1vh; /* Further reduced spacing */
}

.extra-text a {
    color: #C2B280;
    text-decoration: none;
    font-weight: bold;
}

.extra-text a:hover { text-decoration: underline; }

/* Store Link (Shop Our Online Catalog) */
#store-link {
    font-size: 2.5vh;
    color: #FFD700;
    margin: 1vh 0; /* Reduced spacing above & below */
    font-weight: bold;
}

#store-link a { color: #FFD700; text-decoration: underline; }
#store-link a:hover { text-decoration: none; }

/* Footer & Veteran Owned Text */
.footer {
    font-size: 4vh;
    font-weight: bold;
    background: linear-gradient(to right, red, white, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 6vh;
}

/* Address Link */
#address {
    font-size: 2.5vh;
    color: #FFD700;
    text-decoration: underline;
    font-weight: bold;
    margin-top: 2vh;
}

#address:hover { text-decoration: underline; }

/* Mobile Adjustments */
@media (max-width: 768px) {
    #logo {
        width: 75vw;
        max-width: 375px;
        margin-top: 4vh;
        margin-bottom: 3.5vh; /* Reduced spacing between logo and text by 50% */
    }

    .call-hover-text {
        bottom: 0;
        background: none;
        animation: fadeInOut 2s infinite alternate ease-in-out;
    }

    #store-link {
        font-size: 2.2vh;
        margin: 0.6vh 0; /* Reduced spacing above & below */
    }

    #address {
        display: flex;
        flex-direction: column;
        text-align: center;
        font-size: 2.2vh;
        color: #FFD700;
        font-weight: bold;
        margin-bottom: 5vh;
    }

    #address span { display: block; }
}

/* Fading Animation */
@keyframes fadeInOut { 0% { opacity: 0; } 100% { opacity: 1; } }
