/* Custom styles for navbar */
.navbar {
    border-radius: 20px;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255);
    width: 80%; /* Occupies 80% of the page width */
    margin: 0 auto; /* Centers the navbar */
}

.navbar.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 50%);
    background-color: rgba(255, 255, 255, 0.75); /* 50% transparent background */
}

.section {
    height: 100vh; /* Set height for sections */
}

/* Background image for the top of the page */
body {
    background-image: url('../img/inner-flame-background.jpg'); /* Replace with your image path */
    background-size: auto 100vh; /* Set height to cover the entire viewport height */
    background-position: center top;
    background-repeat: no-repeat;
    margin: 0;
    padding-top: 60px; /* Adjust to accommodate the navbar */
}

/* Media query for larger screens */
@media (min-width: 1600px) {
    body {
        background-size: 100% auto; /* Initially take entire viewport width */
    }
}

.transparent-bg {
    background-color: rgba(255, 255, 255, 0.7); /* 70% transparent background for the top image area */
    padding: 10px; /* Padding for content in the top area */
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.custom-card {
    max-width: 600px; /* Set maximum width */
    background-color: transparent; /* Transparent background for the card */
    border: none;
}
.custom-card .card-body {
    background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for the card body */
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Adds a blur effect for better readability */
}
.card-text {
    color: rgba(255, 255, 255, 0.8); /* Adjust text opacity as needed */
}

.card-title {
    color: rgba(255, 255, 255, 0.8); /* Adjust text opacity as needed */
}


.card-text-black {
    color: rgba(0, 0, 0, 1); /* Adjust text opacity as needed */
}

.card-title-black {
    color: rgba(0, 0, 0, 1); /* Adjust text opacity as needed */
}


.card-img {
    width: 100%; /* Set width to occupy full space inside the card */
    height: auto; /* Allow height to adjust while maintaining aspect ratio */
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}


.schedule-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    max-height: 900px;
}

.contact-section {
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    max-width: 600px;
    margin: 50px auto;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-info {
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.contact-info div {
    margin-bottom: 10px;
}

.contact-info label {
    font-weight: bold;
}