/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}


/*................navbar design.................................*/
.navbar{
    background:rgb(92 7 7);
}
.navbar-brand img {
  width: 50px;
}
.navbar-nav {
  align-items: center;
  
}
.navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 1.1em;
  padding: 0.5em 1em;
}
.navbar .navbar-nav .nav-link:hover{
     border-bottom: 3px solid #fff;
}

@media screen and (min-width: 768px) {
  .navbar-brand img {
    width: 120px;
  }
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
  }
}

/* Navbar Dropdown Styling */
.navbar .dropdown-menu {
    background:rgb(92 7 7);
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    padding: 10px 10px;
}

/* Dropdown items */
.navbar .dropdown-menu .dropdown-item {
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    transition: background 0.3s ease-in-out;
}

/* Hover effect on dropdown items */
.navbar .dropdown-menu .dropdown-item:hover {
    background-color: #c09e6f; /* Darker shade for hover */
    color: #f8f9fa;
    border-radius: 5px;
}

/* Dropdown arrow styling */
.navbar .nav-link.dropdown-toggle::after {
    content: "\f107"; /* FontAwesome down arrow */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    border: none;
    margin-left: 8px;
    font-size: 14px;
}



/* Dropdown Hover Effect */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Ensures proper alignment */
}

/* Smooth dropdown animation */
.dropdown-menu {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
}


/* Ensure dropdown opens on hover (optional) */
@media (min-width: 768px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}


/*...................................navbar model design...........................*/
/* Modal Styling */
.modal-content {
    border-radius: 8px;
    padding: 20px;
    background-color: #f8f9fa; /* Light background for the modal */
}

.modal-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.modal-header .modal-title {
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
}

.btn-close {
    background-color: transparent;
    border: none;
}

/* Tab Buttons */
.nav-tabs {
    border-bottom: 2px solid #ddd;
}

.nav-tabs .nav-link {
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    color: #007bff;
    font-weight: 500;
    transition: background-color 0.3s;
}

.nav-tabs .nav-link:hover {
    background-color: #f8f9fa;
}

.nav-tabs .nav-link.active {
    background-color: #c09e6f;
    color: white;
    border-radius: 5px 5px 0 0;
}

/* Tab Content */
.tab-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.tab-pane .mb-3 {
    margin-bottom: 1.5rem;
}

.tab-pane .form-label {
    font-weight: 500;
    color: #333;
}

/* Target only form controls inside the modal */
.modal-content .form-control {
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
}

.modal-content .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.tab-pane button {
    font-size: 1.2rem;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s;
}

.tab-pane .btn-primary {
    background-color: #c09e6f;
    border: none;
    color: white;
}

.tab-pane .btn-primary:hover {
    background-color: #5c492f;
}

.tab-pane .btn-success {
    background-color: #c09e6f;
    border: none;
    color: white;
}

.tab-pane .btn-success:hover {
    background-color: #5c492f;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .modal-dialog {
        width: 90%;
    }
    
    .modal-header .modal-title {
        font-size: 1.2rem;
    }
    
    .nav-tabs .nav-link {
        font-size: 0.9rem;
    }

    .modal-content .form-control {
        font-size: 0.9rem;
    }

    .tab-pane button {
        font-size: 1rem;
    }
}

/* Optional: Add slight shadow to the modal */
.modal-dialog {
    max-width: 500px;
    margin: 30px auto;
}

.modal-content {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 20px 40px;
}

/* Form Input Field */
.modal-content .form-control {
    font-size: 1rem;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Input Focus */
.modal-content .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


/*................................carousel design...............................*/


/* Ensure the carousel images cover the full area without zooming */
.carousel-item img {
    width: 100%;
    height: 100vh; /* Full height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}

/* Add a dark overlay over the images */
.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: 1;
}

/* Center content within the carousel */
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2; /* Ensures text is above the overlay */
}

/* Style the heading and text */
.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: white;
}

/* Transparent button with hover effect */
.carousel-caption .btn {
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    border: 2px solid white;
    background: transparent;
    color: white;
    transition: all 0.3s ease-in-out;
}

/* Button hover effect */
.carousel-caption .btn:hover {
    background: white;
    color: black;
}

/*...........................................2nd section design........................*/
.booking-info {
    padding: 120px 0; /* Spacious top & bottom padding */
    text-align: center;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.booking-info p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* Styling for the individual info boxes */
.info-box {
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    position: relative;
    background: white;
}

/* Hover effect - Slight scale up with color change */
.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #c09e6f;
}

/* Icon Styling */
.info-link {
    text-decoration: none;
    display: block;
    color: inherit; /* Keep default text color */
}
.icon-style {
    font-size: 2rem; /* Slightly smaller icon */
    color: #c09e6f;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.info-box:hover .icon-style {
    color: #333; /* Icon changes to black */
    transform: scale(1.2);
}

/* Title Styling */
.info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

/* Description Text */
.info-box p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #777;
    max-width: 250px;
    margin: auto;
}

/*------------------------------------------------gallery design----------------------------*/
/* Section Styling */
.gallery-section {
    padding: 120px 0; 
    background: #fff;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
    
    font-weight: bold;
}

/* Masonry Grid */
.gallery-masonry {
    column-count: 3;  /* 3 columns on large screens */
    column-gap: 20px; /* Space between columns */
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    break-inside: avoid; /* Prevents images from breaking between columns */
}

.gallery-item img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

/* Responsive for Tablets */
@media (max-width: 992px) {
    .gallery-masonry {
        column-count: 2; /* 2 columns on tablets */
    }
}

/* Responsive for Mobile */
@media (max-width: 576px) {
    .gallery-masonry {
        column-count: 1; /* 1 column on small screens */
    }
}



/*----------------------------------------------End gallery design----------------------------*/





/*...............................................pricing design............................*/
/* Full Section Background */
.pricing-section {
    background-color: #fdf8f5; /* Dark gray background */
    font-family: 'Playfair Display', serif;
    color: black;
    padding: 60px 0;
}

/* Pricing Title */
.pricing-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Payment Notice Box */
.pricing-notice {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent */
    border: 2px solid rgb(92 7 7); 
    color: #ff4d4d; /* Red text */
    font-size: 20px;
    font-weight: bold;
    border-radius: 10px;
    display: inline-block;
    max-width: 80%;
}

/* Important Text */
.important-text {
    color: #ff4d4d;
    font-size: 22px;
    font-weight: bold;
}

/* Table Styling */
.pricing-table {
    background-color: white;
    color: black;
    border-radius: 10px;
    overflow: hidden;
}

/* Table Header */
.pricing-table-header {
    background-color: #343a40 !important;
    color: white !important;
    font-size: 18px;
}

/* Table Body */
.pricing-table-body tr {
    font-size: 16px;
}

/* Table Total Row */
.pricing-table-total {
    background-color: #d1d1d1;
    font-size: 18px;
    font-weight: bold;
}

.event-charge{
    background-color: #ffffff; /* Dark gray background */
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: black;
    padding: 60px 0;
}

/*.........................................Schedule section design.........................*/
.schedule-section {
    background: #f5f5f5;
    padding: 80px 0;
}

.schedule_title{
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.schedule-box {
    background: white;
    padding: 20px;
    margin: 15px 0;
    border-left: 5px solid #c09e6f;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.schedule-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

.schedule-box h4 {
    font-family: 'Playfair Display', serif;
    color: #c09e6f;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

.schedule-box p {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

/*..................................contact section ..............................*/


.contact-section {
    font-family: 'Playfair Display', serif;
    padding: 80px 0;
    background: #fdf8f5;
    text-align: left;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #3d3d3d;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #5a5a5a;
    display: flex;
    align-items: center;
}

.contact-info i {
    font-size: 22px;
    color: #c09e6f;
    margin-right: 10px;
}

.contact-info a {
    color: #c09e6f;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
    color: #a57d4f;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}




 /*//............................................calendar..................................*/
    
    .calendar-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 40px 20px;
    }

    .filter_calendar {
        background: rgb(255 255 255 / 50%);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    .calendar {
        background: rgb(255 255 255 / 50%);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        
    }

    .calendar table {
        width: 100%;
        border-collapse: collapse;
        background: white;
    }

    .calendar th, td {
        text-align: center;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .calendar th {
        background: #c09e6f;
        color: white;
    }

    .calendar td:hover {
        background: #c09e6f;
        color: white;
        cursor: pointer;
    }

    .disabled {
        background: #ddd !important;
        cursor: not-allowed !important;
    }
    
    .event-form {
            background: rgb(255 255 255 / 50%);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            margin: 10px 0px;
        }
    

        



/*...................................................footer design...........................................*/

.footer {
    font-family: 'Playfair Display', serif;
    background: rgb(92 7 7);
    color: #fff;
    padding: 60px 0 20px;
}

.footer h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #c09e6f;
}

.footer p {
    font-size: 16px;
    color: #ddd;
}

.footer-testimonials blockquote {
    font-style: italic;
    border-left: 3px solid #c09e6f;
    padding-left: 10px;
    margin-bottom: 15px;
}

.footer-quote p {
    font-size: 18px;
    font-weight: bold;
    color: #c09e6f;
}

.footer-subscribe form {
    display: flex;
    flex-direction: column;
}

.footer-subscribe input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #c09e6f;
    border-radius: 5px;
}

.footer-subscribe button {
    background: #c09e6f;
    color: #fff;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.footer-subscribe button:hover {
    background: #fff;
    color: #c09e6f;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #444;
}

