:root {
    --primary-color: #06221d;
    --accent-color: #d9a05d;
    --text-light: #ffffff;
    --text-dark: #333333;
}

/* General Styles */
body {
    font-family: "Outfit", serif;

    color: var(--text-dark);
    scroll-behavior: smooth;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    
}
h1,h2,h3{
    font-weight: 700 !important;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
right: 50%;
    left: 48%;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}
ul li{
    list-style: none;
    margin: 0;
    padding: 0;
}
.logo{
    min-height: 80px;
}
.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--accent-color);
}

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--text-light);
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('./assets/heroSection.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 34, 29, 0.7);
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonial-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 800px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1rem;

}



/* Packages Section */
.package-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.package-card .price {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin: 1rem 0;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.package-card ul li {
    margin: 0.5rem 0;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.25rem rgba(217, 160, 93, 0.25);
}

/* Contact Section */
.contact-form .form-control {
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info {
    padding: 2rem;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 8px;
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 8px;
    width: 100%;
}
/* Contact Section Styles */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #06221d;
    padding: 2rem;
    border-radius: 8px;
    color: #fff;
}

.contact-info h3 {
    color: #d9a05d;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.branch-contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.branch-contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.branch-contact-card h4 {
    color: #d9a05d;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.branch-phone:last-child {
    margin-bottom: 0;
}

.branch-phone a, .contact-email a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.branch-phone a:hover, .contact-email a:hover {
    color: #d9a05d;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-control, .form-select {
    padding: 0.75rem;
    border: 1px solid rgba(6, 34, 29, 0.1);
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #d9a05d;
    box-shadow: 0 0 0 0.25rem rgba(217, 160, 93, 0.25);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
}
.carousel-inner{
    height: auto;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .branch-contact-card {
        padding: 1rem;
    }

    .branch-contact-card:hover {
        transform: none;
    }
}
/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.social-links a {
    color: var(--text-light);
    margin-left: 1rem;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}
/* Amenities Section */
.amenity-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
    /* background-color: rgba(217, 160, 93, 0.1); */
    margin: 0 auto 1.5rem;
}

.amenity-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.amenity-card p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Why Choose Us Section Styles */
.why-choose-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(217, 160, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-wrapper i {
    font-size: 2rem;
    color: #d9a05d;
}

.why-choose-card h3 {
    color: #06221d;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-choose-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* FAQ Section Styles */
.accordion-item {
    border: 1px solid rgba(6, 34, 29, 0.1);
    margin-bottom: 1rem;
}

.accordion-button {
    background-color: #fff;
    color: #06221d;
    font-weight: 500;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: #d9a05d;
    color: #06221d;
}

.accordion-button:focus {
    border-color: #d9a05d;
    box-shadow: 0 0 0 0.25rem rgba(217, 160, 93, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306221d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306221d'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
}

.text-accent {
    color: #d9a05d;
}

.accordion-body ul {
    margin: 0;
    padding-left: 1.25rem;
}

.accordion-body ul li {
    margin-bottom: 0.5rem;
}
.gallery-item>img{
    height: 300px;
    width: 100%;
    object-fit: cover;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .accordion-body {
        padding: 1rem;
    }
}
/* Responsive Styles */
@media (max-width: 768px) {
    .why-choose-card {
        margin-bottom: 1rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.5rem;
    }
}
/* Blog Section */
.blog-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    line-height: 1;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-meta {
    margin: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.blog-meta span {
    margin-right: 1rem;
}

.blog-meta i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Branches Section Styles */
.branch-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #d9a05d;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.branch-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(217, 160, 93, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.branch-icon i {
    font-size: 2rem;
    color: #d9a05d;
}

.branch-card h3 {
    color: #06221d;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.branch-details {
    margin-bottom: 1.5rem;
}

.location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.location i {
    color: #d9a05d;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.contact-info i {
    color: #d9a05d;
}

.phone-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #d9a05d;
}

.branch-card .btn {
    background-color: #06221d;
    border-color: #06221d;
    color: #fff;
    transition: all 0.3s ease;
}

.branch-card .btn:hover {
    background-color: #d9a05d;
    border-color: #d9a05d;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .branch-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }
    
    .branch-icon {
        width: 60px;
        height: 60px;
    }
    
    .branch-icon i {
        font-size: 1.5rem;
    }
    
    .branch-card h3 {
        font-size: 1.25rem;
    }
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .amenity-card {
        margin-bottom: 1rem;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .section-title {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .package-card.featured {
        transform: none;
    }
}


/* New CSS */

/* Hero Section */
.hero-kphb {
    height: 100vh;
    background: url('./assets/kphb/madhura-banquets-kphb.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-malkajgiri {
    height: 100vh;
    background: url('./assets/malkajgiri/madhura-banquets-malkajgiri.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-manikonda {
    height: 100vh;
    background: url('./assets/manikonda/madhura-banquets-manikonda.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}


.hero-nagole {
    height: 100vh;
    background: url('./assets/nagole/madhura-banquets-nagole.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
}

.branch-title-link {
  color: inherit;
  text-decoration: none;
}

.branch-title-link:hover {
  text-decoration: underline;
}
  