/* General Styles */
body {
    font-family: 'Questrial', sans-serif;
    background-color: #000;
    color: #fff;
}

.font-allura {
    font-family: 'Allura', cursive;
}

.font-questrial {
    font-family: 'Questrial', sans-serif;
}

.text-gold {
    color: #FFD700;
}

.display-5 {
    font-size: 2rem; /* Title font size */
}

/* Navbar */
.navbar-brand img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Carousel Styles */
.carousel-inner img {
    width: 100%;
    height: 475px;
    object-fit: cover;
}

.carousel {
    margin-bottom: 0; /* Remove margin to ensure slider touches the gallery section */
}

.carousel-caption {
    width: 100%;          /* Makes the caption take the full width */
    left: 0;              /* Aligns the caption to the left side */
    right: 0;             /* Ensures the caption spans fully to the right */
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds a semi-transparent background */
    text-align: center;   /* Centers the text within the caption */
    padding: 10px 0;      /* Adds padding to the top and bottom for better readability */
    bottom: 0;            /* Positions the caption at the bottom of the slider */
}

/* Section Styles */
section#home {
    padding: 0; /* Remove padding from the home/slider section */
}

section#gallery {
    margin-top: 0; /* Remove margin between gallery and slider */
}

/* Card Image */
.card-img-top {
    height: 300px;
    object-fit: cover;
}

/* Button Styles */
.btn-warning {
    background-color: #FFD700;
    border-color: #FFD700;
}

/* Footer Styles */
footer {
    padding: 20px 0;
}

/* Social Media Icons Hover Effect */
a:hover i {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Pricing Section */
.pricing-section {
    background-color: #f0f0f0;
    padding: 20px;
}

.pricing-column {
    border: 1px solid #222;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.dotted-line {
    border-bottom: 1px dotted #000;
    padding-bottom: 5px;
}

.menu-item {
    color: #000;
}

.pricing-column + .pricing-column {
    margin-left: 0; /* Remove left margin */
    margin-bottom: 20px; /* Apply margin only to the bottom */
}

.category-title {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none; /* Removes underline from anchor links */
}

.navbar-brand img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.navbar-brand .brand-text {
    margin-left: 1.5rem; /* Equivalent to ms-4 in Bootstrap */
}

.navbar-brand .brand-text .brand-name {
    font-family: 'Allura', cursive;
    font-size: 2.5rem;
    color: #D4AF37; /* Gold color */
}

.navbar-brand .brand-text .brand-tagline {
    font-family: 'Questrial', sans-serif;
    font-size: 0.9rem;
    color: #fff; /* Adjust as per your preference */
}

        .service-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }

        .service-row div {
            width: 30%;
        }

        .service-row div:nth-child(1) {
            text-align: left;
        }

        .service-row div:nth-child(2) {
            text-align: center;
        }

        .service-row div:nth-child(3) {
            text-align: right;
        }

        .category-section {
            display: none;
        }

        .category-section.active {
            display: block;
        }

        /* Pricing Section */
.pricing-section {
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
}

.service-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.service-row div {
    width: 30%;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
}

/* Consistent Section Spacing */
section#pricing {
    padding: 5rem 0; /* Consistent with other sections */
}
