/* Reset and General Styles */
* {
    font-family: "League Spartan", sans-serif;
	margin: 0;
}
html {
	scroll-behavior: smooth;
}

/* Navbar Styles */
.navbar-nav {
    font-size: 19px;
    font-weight: 300;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.nav-item {
    padding: 0px 25px;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    padding-bottom: 5px;
    color: #000;
    text-decoration: none;
}

.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease-out;
}

.navbar-nav .nav-item .nav-link:hover::after {
    left: 0;
    width: 100%;
}

.navbar-nav .nav-item.active .nav-link::after {
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
}

/* Hero Section */
.hero-bg {
    position: relative; /* Needed for absolute positioning of the overlay */
    background-image: url("../image/homepage-hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 105vh;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 100px 25px 40px;
    text-align: right;
}

/* Semi-transparent overlay for the background */
.hero-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Adjust opacity (20% transparency) */
    z-index: 1; /* Ensure it sits behind the content */
}

/* Heading styles (on top of overlay) */
.hero-bg h1 {
    position: relative; /* Ensure the heading is above the overlay */
    z-index: 2; /* Ensure it sits above the overlay */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 9.5rem;
    color: #E4A4BD;
    padding-right: 50px;
}

/* Button styles (also above the overlay) */
.hero-buttons {
    display: flex; /* Align buttons horizontally */
    justify-content: center; /* Center buttons horizontally */
    gap: 30px; /* Add space between buttons */
    width: 100%; /* Take full width for centering */
    position: relative;
    z-index: 2; /* Ensure buttons are above the overlay */
	margin-top: 20px;
	bottom: 3%;
}
.hero-buttons .btn-custom {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    padding: 10px 25px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.hero-buttons .btn-custom:hover {
    background-color: white;
    color: #E4A4BD;
    text-decoration: none;
}

 #animation_text {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0; /* Start invisible */
    transition: all 1s ease-out; /* Smooth transition for animation */
}
 #animation_text.animate {
    transform: translateX(0); /* Move into place */
    opacity: 1; /* Fully visible */
}








/* Footer Styles */
footer {
    background-color: #E4A4BD;
    border-top: 1px solid #ddd;
	color: #FDF8F3;
}

footer a {
	color: #FDF8F3;
    text-decoration: none;
    transition: color 0.3s ease;
}
.list-unstyled a{
	color: #FDF8F3 !important;
}
.list-unstyled li{
	padding: 4px;
}
footer h5 {
	text-transform: uppercase;
	font-size: 25px;
	padding-bottom: 10px;
}

footer a:hover {
    color: #111111;
}

footer .fab {
	color: #FDF8F3;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

footer .fab:hover {
    transform: scale(1.2);
}


/* Small Mobile Screen Styles */
@media (max-width: 576px) {
    /* Navbar */
    .navbar-nav {
        font-size: 16px; /* Slightly smaller font for small screens */
        padding: 5px;
    }

    .nav-item {
        padding: 0 15px; /* Reduce padding between navbar items */
    }

    /* Hero Section */
    .hero-bg {
        padding: 50px 15px 20px; /* Adjust padding for smaller screens */
        text-align: center; /* Center-align text on small screens */
		height: 300px;
    }

    .hero-bg h1 {
        font-size: 3rem; /* Smaller font size for headings */
        padding-right: 0; /* Remove padding for small screens */
    }

    .hero-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Reduce gap between buttons */
    }

    .hero-buttons .btn-custom {
        width: 100%; /* Make buttons full-width */
		height: 45px;
    }

    /* Cards Section */
    #cards-section {
        padding: 100px 15px; /* Reduce padding for small screens */
    }

    .card {
        flex: 1 1 100%; /* Make each card take up full width */
        max-width: 100%;
        margin-bottom: 20px; /* Add space between cards */
    }

    .card-img-top {
        height: 250px; /* Smaller image height for small screens */
		width: 250px;
		display: contain;
    }

    /* Footer */
    footer {
        font-size: 14px; /* Reduce font size for footer */
    }

    footer h5 {
        font-size: 18px; /* Smaller headings in the footer */
    }

    .list-unstyled li {
        padding: 2px; /* Reduce padding between footer links */
    }
}

