
/* Home Page Specific Styles */

/* Page Background and Layout */
html.home-page {
    background-color: black;
    min-height: 100%;
}

body.home-page {
    background: url("/assets/img/websiteBackground8.png") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Transparent Navbar for Home */
#myNavbar.home-navbar {
    background-color: transparent !important;
}

#myNavbar.home-navbar a {
    color: white;
}

/* Main Content Area */
.main-content {
      flex: 1;
      display: flex;
      justify-content: center;
      /* change from align-items: center; */
      align-items: flex-start; /* Start from the top */
  } 

.main-content header {
    font-size: 1.7em;
    transform: translateY(-60%);
}

#headerLink {
    color: white;
    text-decoration: none;
    transition: font-size 0.3s;
}

#headerLink:hover {
    font-size: 1.2em;
}

/* Home Container */
#idContainer.home-container {
    background-color: transparent !important;
}

.main-content.home-content {
    background-color: transparent !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#idContainer button {
    background-color: transparent; /* Default non-hover background */
    padding: 10px;
    margin: 10px 0; /* Add some margin around buttons if needed */
    box-sizing: border-box;
}

#idContainer button:hover {
    background-color: #aa8e5f;
    cursor: pointer;
}

#idContainer textarea, 
#idContainer input {
    margin-bottom: 20px;
    box-sizing: border-box;
}





footer a {
display: inline-block;  /* Make it block-level to add padding */
padding: 5px 10px;  /* Padding for the button appearance */
margin: 0 5px;  /* Spacing between links */
color: white;  /* Text color */
border: 1px solid white;  /* White border */
text-decoration: none;  /* Remove the underline */
border-radius: 5px;  /* Rounded corners for the buttons */
transition: background-color 0.3s ease;  /* Smooth transition for hover effect */
}

footer a:hover {
    color: #82693e;  /* Text color on hover */
}

/* Promo Text Section */

#promoText {
    cursor: pointer;
    padding-top: 70px;
    padding: 10px 15px;
    color: white; /* Text color */
    background-color: transparent;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    transition: all 0.3s ease;
}



@keyframes scaleUpDown {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.5); }
}

/* Initial state of the image with animation set to run once */
#promoText img {
    width: 80%;
    animation: scaleUpDown 1s ease none; /* 'none' makes sure the animation doesn't affect the final state */
    transition: transform 0.3s ease; /* Smooth transition for scaling */
}

/* Hover effect on the images */
#promoText:hover img {
    transform: scale(1.1); /* Scale up the image slightly on hover */
}
/* Class for the animation */
.animate-scale-up-down {
    animation: scaleUpDown 1s ease forwards; /* Animation lasts 1 second */
}

/* Hover effect on the container */
#promoText:hover img, #promoText:hover span {
    transform: scale(1.1); /* Scale up both image and text on hover */
}

#promoText img, #promoText span {
    transition: transform 0.3s ease;
}

/* Products Button */
#productsBtn {
    width: auto;
    margin: 0 auto;
    padding: 15px 60px;
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    display: block;
    align-items: center;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (max-width: 990px) {
    #productsBtn {
        font-size: 24px;
        width: auto;
        min-width: 200px;
        max-width: 80vw;
        height: auto;
        padding: 15px 30px;
        bottom: 80px;
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }
}

/* Footer Styling for Home Page */
footer.home-footer {
    background-color: rgb(33, 33, 33);
    text-align: center;
    color: white;
}

footer.home-footer p {
    padding: 0;
    margin: 0;
}

.pulsing {
    animation: pulse 0.75s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.3);
    }
}