/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lilita+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

html {
    scroll-behavior: smooth;
}

/* Global Styles */
* {
    font-family: Lato, sans-serif; /* Default font for paragraphs and other elements */
}

/* Headings */
h1, h2, h3 {
    font-family: 'Lilita One', cursive; /* Font for main titles and headings */
}

h4, h5, h6 {
    font-family: 'Raleway', sans-serif; /* Font for sub-headings */
}

/* Paragraphs and other text elements */
p, .accordion-body, .nav-link, .testimonial-card .card-body, .lead, .btn-gold {
    font-family: 'Lato', sans-serif; /* Font for general text */
}


/* Footer */
footer, .footer-text {
    font-family: 'Montserrat', sans-serif; /* Font for footer text */
}
/* Define font-family for different elements */
.font-lilita {
    font-family: 'Lilita One', cursive;
}

.font-raleway {
    font-family: 'Raleway', sans-serif;
}

.font-lato {
    font-family: 'Lato', sans-serif;
}

/* Example for footer text */
.footer-text {
    font-family: 'Montserrat', sans-serif;
}

/* Heading and Paragraph Specific Styles */
h2 {
    font-weight: bold;
    font-size: 32px;
}

h4 {
    font-weight: 700;
}

p {
    font-size: 18px;
    font-weight: 500;
}

h2.accordion-header button {
    font-size: 20px !important;
}

.accordion-body {
    font-size: 20px;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    background: url('../images/bgch.jpg') no-repeat center center / cover;
    overflow: hidden;
    /* margin: -75px; */
  z-index: 200;
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the overlay color and opacity */
}

.hero-container {
    position: relative;
    z-index: 1; /* Ensure content stays above the background image */
    color: #fff; /* Set text color to white */
    padding: 50px 0; /* Adjust padding as needed */
}

/* Navbar */
.navbar {
    transition: background-color 0.5s;
}

.nav-link {
    cursor: pointer;
}

.navbar.scrolled {
    background-color: #e9e9e9 !important;
}

.navbar-nav li {
    margin-left: 20px;
}

.navbar-nav li a {
    font-size: 16px;
    font-weight: 600;
    color: #c69506 !important;
    text-shadow: 0px 0px 0.9px rgba(255, 255, 255, 0.8);
    transition: color 0.3s, font-size 0.3s;
}

.navbar-nav li a:hover {
    color: #ffcc00 !important;
    font-size: 18px;
}

/* Custom Styles for Products */
.product-img {
    max-height: 200px;
    object-fit: cover;
}

.product-page {
    display: none;
}

.checked-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

/* Section Styles */
.section-heading {
    color: #333;
    font-family: 'Lilita One', cursive;
}

.section-subheading {
    color: #666;
    font-family: 'Raleway', sans-serif;
}

.service-icon {
    color: #c59405;
}

.testimonial-card {
    height: 100%;
}

.testimonial-card .card-body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-question {
    cursor: pointer;
}

.w-100 {
    width: 100%;
}

/* Animation Duration */
:root {
    --animate-duration: 800ms;
    --animate-delay: 0.9s;
}

/* Button Styles */
.btn-gold {
    background-color: #ffcc00;
    border: 0;
    color: black;
    font-family: 'Lato', sans-serif;
}

.btn-gold:hover {
    background-color: #bd9700;
    border: 0;
}

/* Navbar Styles for Mobile View */
@media (max-width: 991.98px) {
    #hero {
        position: relative;
        height: inherit;
        height: 600px;
        background: url('../images/bgch.jpg') no-repeat center center / cover;
        overflow: hidden;
    }

    #hero h1 {
        font-size: 3.5rem !important;
    }

    .navbar {
        background-color: #e9e9e9 !important;
    }

    .navbar-nav .nav-item .nav-link {
        color: #000 !important;
    }

    .navbar-nav li {
        margin-left: 0px;
    }
}

/* Navbar Hover Effects and Active Link Styles */
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: #ffcc00 !important;
}


.btn-gold{
    background-color: #ffcc00;
    border:0;
    color: black;
}

.btn-gold:hover{
    background-color:   #bd9700;
    border:0;
}


.navbar {
    transition: all 0.3s ease;
    z-index: 201;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff !important; /* Adjust background color if needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds shadow for better visibility */
}
