/* Root Variables */
:root {
    --white: #fff;
    --dark-gray: #333;
    --gold: #FFD700;
    --light-gold: #ffcc00;
    --hover-gold: #e6b800;
    --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 6px 12px rgba(0, 0, 0, 0.2);
    --small-border-radius:4px;
    --medium-border-radius:8px;
    --large-border-radius:10px;
}

/* Global Styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: var(--dark-gray);
}

a {
    text-decoration: none;
}
h1{
    letter-spacing: 1px; /* Optional: Adds spacing between letters */
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase; /* Optional: Makes the text uppercase */
    letter-spacing: 1px; /* Optional: Adds spacing between letters */
    font-weight: 600;
    font-size: 2.2rem;
    color: rgba(0, 0, 0, 0.9)/* Gold color */
}


/* Header */
header {
    background-color: #000;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow for fixed header */
    z-index: 1000;
    opacity: .9;
    
}
.header-animate {
    animation: slideDown 0.5s ease-in-out; /* Define the animation here */
  }
  
  /* Keyframes for slide-down effect */
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }

.navbar-brand img{
    height: 45px;
}
header .navbar-nav a,
header .navbar-nav button {
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

header .navbar-nav a:hover,
header .navbar-nav button:hover,
.nav-link:focus {
    color: var(--gold) !important;
}

.navbar {
    min-height: 90px;
    align-items: center;
}

.nav-item {
    padding-left: 40px;
}

.active-page{
    color: var(--gold) !important;
}

/* Main Dropdown */
.m-dropdown-menu{
    display: none;
}
.dropdown {
    position: relative;
    border: none;
  }
  
  .dropdown summary {
    list-style: none;
    list-style-type: none;
  }
  
  .dropdown summary:focus {
    outline: none;
  }

  
  .dropdown ul {
    position: absolute;
    list-style-type: none;
    padding: 20px 0;
    width: 150px;
    left: 50%;
    box-sizing: border-box;
    z-index: 99;
    background: var(--white);
    border-radius: 6px;
    list-style: none;
  }

  .dropdown ul li a:link, .dropdown ul li a:visited {
    display: inline-block;
    padding: 10px 0.8rem;
    width: 100%;
    color: #000;
    list-style-type: none;

  }
  
  .dropdown ul li a:hover {
    color: var(--gold);
  }

  .dropdown > summary::before {
    display: none;
  }

/* /////////// */
.secondary-nav {
    width: 100%;
    height: 40px;
    background: rgba(255, 255, 255);
    box-shadow: var(--shadow-strong);
}

.header_categories {
    display: flex;
    list-style-type: none;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}

.header_categories li a {
    color: #000;
    font-weight: 900;
    text-decoration: overline;
    transition: all 0.2s;
}

.header_categories li a:hover {
    color: var(--gold);
}
.navbar-toggler{
    background-color: #f5f5f5;
    padding: 4px 8px;
}
/* Hero Section */
#hero .carousel-item {
    height: 38vh;
    background-position:center !important;
    background-repeat: no-repeat !important;
    object-fit: cover !important;
    background-size: cover !important;
}

#hero .carousel-item h1 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

/* Blog Cards */
.blogs-section{

    padding: 20px;
}
.blog-detail-title{
    font-size: 25px;
    font-weight: 700;
    background-color: #fffaf0;
    border-left: 5px solid #f5c518;
    padding: 12px 20px;
    border-radius: 6px;
    color: #4e3629;
    margin-bottom: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.index-blogs {
    border: none;
    border-radius: var(--medium-border-radius);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.index-blogs img {
    height: 200px;
    object-fit: cover;
    border-radius: var(--medium-border-radius);
}

.index-blogs .card-body {
    padding: 20px;
}

.index-blogs .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-gray);
}
.index-blogs .card-title:hover{
    color: var(--hover-gold);
}
.index-blogs .card-text {
    color: #777;
}

/* Sidebar */
.sidebar {
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 20px;
    border-radius: var(--medium-border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 20px;
}

.sidebar-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid var(--light-gold);
    padding-bottom: 10px;
}

.sidebar-link {
    display: block;
    color: var(--dark-gray);
    font-size: 1.1rem;
    padding: 10px;
    border-radius: var(--small-border-radius);
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.05);
}

.sidebar-link:hover {
    background-color: var(--light-gold);
    color: var(--white);
}

.list-group-item {
    border: none;
    background-color: transparent;
}

/* Newsletter Section */
.newsletter {
    margin-top: 30px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: var(--medium-border-radius);
    box-shadow: var(--shadow-light);
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form .form-control {
    border: 1px solid #ddd;
    border-radius: var(--small-border-radius);
    padding: 12px;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: border 0.3s ease;
}

.newsletter-form .form-control:focus {
    border-color: var(--light-gold);
    box-shadow: 0 0 5px rgba(255, 204, 0, 0.7);
}

.newsletter-form .btn {
    background-color: var(--light-gold);
    color: #000;
    font-weight: 600;
    padding: 12px;
    border-radius: var(--small-border-radius);
    border: none;
    width: 100%;
    transition: background-color 0.3s ease;
    letter-spacing: 1px;
}

.newsletter-form .btn:hover {
    background-color: var(--hover-gold);
}
/* Overlay Styles */
.search-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Darker overlay for modern look */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start with invisible overlay */
    transform: scale(0.8); /* Start with slightly scaled down overlay */
    transition: opacity 0.4s ease, transform 0.4s ease; /* Smooth transition for opacity and scale */
}

/* Search Container Styles */
.search-container {
    position: relative;
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--large-border-radius);
    text-align: center;
    width: 70%; /* Adjust the width */
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .5); /* Subtle shadow for modern design */
}
.search_form{
    justify-content: center;
}
.search-container .form-control {
    width: 80%; 
    height: 40px;
    padding: 22px !important;
    font-size: 16px;
    border-right: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    padding: 10px;
    
}
.search-container .form-control:focus{
    border: .9px solid;
    outline: none ;
    box-shadow: var(--shadow-strong);
}
.overlay-search-btn{
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: var(--gold);
    color: #000;
}

.overlay-search-btn:hover{
    background-color: #000;
    color: var(--white);
}

/* Container for the suggestion dropdown */
.suggestions-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    background-color: #000000b1;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
    align-items: center;
    left: 0;

}

/* Each suggestion item */
.suggestion-item {
    padding: 12px 16px;
    font-size: 16px;
    color: #f5f5f5;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    border-bottom: 1px solid #f1f1f1;
    width: 100%;
}

/* Last item - remove bottom border */
.suggestion-item:last-child {
    border-bottom: none;
}

/* Hover state */
.suggestion-item:hover {
    background-color: #bfbfbf;
    color: #000;
}

/* Optional: make title bold */
.suggestion-item span {
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
}

/* Responsive tweak */
@media (max-width: 600px) {
    #suggestions-container {
        max-height: 200px;
        font-size: 14px;
    }

    .suggestion-item {
        padding: 10px 14px;
    }
}




/* ///////////////     PAGINATION   /////////////////// */
/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  /* Pagination List */
  .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
  }
  
  /* Page Items */
  .page-item {
    border-radius: 5px;
    background-color: #fff;
    transition: 0.3s;
  }
  
  .page-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 14px;
  }
  
  /* Hover Effects */
  .page-link:hover {
    background-color: var(--gold);
    color: #fff;
    text-decoration: none;
  }
  
  /* Active Page */
  .page-item.active .page-link {
    background-color: var(--gold);
    color: white;
    pointer-events: none;
    border:1px solid;
    font-weight: bold;
  }
  
  /* Disabled Pages */
  .page-item.disabled .page-link {
    pointer-events: none;
    opacity: 0.8;
  }
  


/* ///////////////     SINGLE POST   /////////////////// */

.post{

    background-color: var(--white);
    color: var(--dark-gray);
    padding: 30px;
    border-radius: var(--medium-border-radius);
    box-shadow: var(--shadow-light);
}
.post-content {
    font-size: 18px;
    line-height: 1.8;
    padding: 20px;
    border-radius: var(--medium-border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333;
}

.post-highlight {
    font-size: 16px;
    padding: 10px;
    color: #f5f5f5ad !important;
    border-left: 4px solid #ffd700;
}


/* Related Posts Enhancements */
.related-posts ul li a {
    color: #444;
    list-style-type: none;

}

.related-posts ul li a:hover {
    color: #111;
}

.related-posts ul li img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #ffd700;
}



/* BREADVRUM///////////////////// */

.breadcrumb-wrapper {
    margin-bottom: 20px;
}

.themed-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: var(--medium-border-radius);
    background: #1a1a1a; /* Black background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    align-items: center;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 600;
    margin-right: 8px;
    color: var(--white); /* White text */
    display: flex;
    align-items: center;
}

.breadcrumb-item::after {
    content: '›';
    color: #d4af37; /* Golden color */
    font-size: 14px;
    margin-left: 5px;
}

.breadcrumb-item:last-child::after {
    content: '';
}

.breadcrumb-item a {
    color: white; /* Golden links */
    padding: 5px 10px;
    border-radius: var(--small-border-radius);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    background: rgba(212, 175, 55, 0.2); /* Light golden background on hover */
    color: var(--white);
}

.breadcrumb-item.active {
    color: #eeb31f; /* Softer goldenrod color for active page */
    background: rgba(184, 134, 11, 0.2);
    padding: 5px 10px;
    border-radius: var(--small-border-radius);
    font-weight: bold;
}




/* ////////////////////////CONTACT PAGE///////////////////////////////////// */


 /* Enhanced Styling for the Contact Page */
 .contact-container {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: var(--medium-border-radius);
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.contactus-hadding{
    margin-bottom: 10px;
    text-align: center;
}
.form-label, .contact-info h4 {
    color: #b8860b; /* Soft golden color for consistency */
}
.contact-form input, .contact-form textarea {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 10px;
    transition: border 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}
.contact-form button {
    background-color: #b8860b;
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--small-border-radius);
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #333;
}
.contact-info {
    margin-top: 30px;
}
.contact-info ul {
    padding: 0;
}
.contact-info ul li {
    margin-bottom: 12px;
    font-size: 16px;
}
.contact-info ul li i {
    color: #b8860b;
    margin-right: 10px;
    list-style-type: none;

}



/* ////////////////////////////ABOUT US PAGE ///////////////////////////////////// */

.about-page-container {
    padding: 30px 15px;
    background-color: white;
    border-radius: var(--medium-border-radius);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 40px;
}
.about-us-hadding {
    text-align: center;
    margin-bottom: 1rem;
}
.about-page-title {
    font-size: 1.6rem;
    color: #b8860b;
    border-bottom: 2px solid #b8860b;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content-section {
    margin-bottom: 20px;
    text-align: justify;
}

.about-content-section p {
    font-size: 1rem;
    margin: 8px 0;
    line-height: 1.7;
}

.highlight-text {
    color: #b8860b;
    font-weight: 900;
}

       



/* /////////////////////////////TERMS AND CONDITION PAGE/////////////////////////// */
.legal-page {
    padding: 30px;
    line-height: 1.8;
    font-family: 'Arial', sans-serif;
}

.legal-page h1 {
    color: #b8860b !important;
    border-radius: 10px;
    padding: 10px 0px;
    background-color: #222;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}

.legal-page h2 {
    color: #f39c12;
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
    width: auto;
}
.legal-page h2::after {
    content: '';
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #575454;
}

.legal-page p {
    color: #333;
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

.legal-page a {
    color: #f39c12;
}

.legal-page a:hover {
    text-decoration: underline;
}
.legal-page ul {
    font-size: 1rem;
    color: #666;
    padding-left: 0;
    list-style-type: none;

}

.legal-page li {
    margin-bottom: 10px;
}

/* ////////////////////////////////// All Blogs PAGE///////////////////////////////// */
/* Blogs Section */
.blogs {
    padding: 10px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.blog-card {
    background: #fff;
    border-radius: var(--large-border-radius);
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card .content {
    padding: 15px;
}

.blog-card h2 {
    color: #333;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
}


.blog-card h2:hover {
    color: #d4af37;
}

.blog-card .meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 0.9rem;
    color: #555;
}


/* Footer */
footer {
    margin-top: 20px;
    background-color: #333;
    color: var(--white);
    padding: 30px 0;
}

footer a {
    color: var(--gold) !important;
}
/* ////////////////////// */

.footer-social-links .social-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  
  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    width: 40px;
    height: 40px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
  
  }
  .social-icon img{
    width: 70%;
    height: 70%;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
  
  }
  .social-icon:hover {
    transform: translateY(-3px);
    background-color:#FFD700;
  }
  



#successMessage {
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 9999;
    background-color: green;
    color: white;
    border: 1px solid #b3ff00;
    padding: 14px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-weight: 500;
    text-align: center;
}




