/* ========== CSS Variables ========== */
:root {
    --primary-color: #FCD106;
    --secondary-color: #E2B600;
    --background-color: rgba(0, 0, 0, 0.6);
    --text-color: white;
    --button-bg-color: #67C330;
    --button-hover-bg-color: #4B8F2B;
    --font-family: 'Roboto', sans-serif;
    --border-radius: 16px;
    --transition-duration: 0.3s;
    --header-image-max-width: 100%;
    --header-image-max-height: 250px;
    --container-max-width: 60%;
    --container-gap: 15px;
    --button-width: 50px;
    --button-height: 50px;
    --social-icon-size: 40px;
    --footer-padding: 15px;
    --footer-font-size: 14px;
    --footer-gap: 15px;
    --small-font-size: 12px;
    --small-button-width: 40px;
    --small-button-height: 40px;
    --small-social-icon-size: 30px;
    --small-padding: 8px 16px;
    --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ========== Global Styles ========== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, #137623,#000000, #137623, #000000, #ffff00);
    background-size: 200% 200%;
    animation: gradientMove 25s ease-in-out infinite;
    color: var(--text-color);
    text-align: center;
    padding: 20px;
    padding: 2rem;
}

/* Background Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


.hidden {
    display: none;
}
/* ========== Layout ========== */
.container {
    max-width: 100%;
    display: flex;
    margin: 0px auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--container-gap);
}

h1 {
    max-width: 75%;
    margin: auto;
    padding: 1rem;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
}

h2 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
}

h3 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
}

h4 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

p {
    margin: 5px 0px 5px 5px;
    padding: .5rem .5rem 0em .5rem;
    text-overflow: ellipsis;
    justify-self: center;
    max-width: 75%;
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    word-wrap: break-word;
}
p, h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    overflow-wrap: break-word;
}



@media (max-width: 600px) {
    h1 {
        max-width: 90%;
    }
}



/* ========== Info & Contact Boxes ========== */
.info-box {
    background: var(--background-color);
    padding: 15px;
    border-radius: var(--border-radius);
    width: 75vw;
    text-align: center;
    box-shadow: var(--box-shadow);
    
}
/* ========== Header Image ========== */
.header-image {
    max-width: 60%;
    height: auto;
    border-radius: 5px;
    margin: 0;
    box-shadow: var(--box-shadow);
}

.carousel {
    width: fit-content;
    margin: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    max-width: 75vw;
    display: none;
    aspect-ratio: 2/1;
    border-radius: var(--border-radius);
    transition: opacity var(--transition-duration) ease;
    box-shadow: none;
    object-fit: cover;
}

.carousel-image.active {
    display: block;
}

.contact-box {
    background: var(--background-color);
    padding: 15px;
    border-radius: var(--border-radius);
    width: 75vw;
    text-align: center;
    box-shadow: var(--box-shadow);

}

/* ========== Buttons & Links ========== */
.button-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.button-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--button-width);
    height: var(--button-height);
    background-color: var(--button-bg-color);
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
    box-shadow: var(--box-shadow);
}

.button-container a:hover {
    background-color: var(--button-hover-bg-color);
}

.social-icon {
    width: var(--social-icon-size);
    height: var(--social-icon-size);
    transition: transform var(--transition-duration) ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color var(--transition-duration);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.phone-button {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 12px;
    border-radius: var(--border-radius);
    font-weight: bold;
    font-size: clamp(0.8rem, 2vw, 1.25rem);
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-duration) ease;
    box-shadow: var(--box-shadow);
}

.phone-button:hover {
    background-color: var(--secondary-color);
}

/* ========== Footer ========== */
footer {
    background-color: var(--background-color);
    padding: var(--footer-padding);
    border-radius: var(--border-radius);
    text-align: center;
    width: 75vw;
    box-shadow: var(--box-shadow);
}

footer ul {
    
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: var(--footer-gap);
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: var(--secondary-color);
}

footer p {
    font-size: var(--footer-font-size);
    margin-top: 10px;
}
