
/* ----------------------------------- */
/* Basic Hero Slider Styles */
/* ----------------------------------- */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 500px; /* Adjust as needed */
    margin-bottom: 40px;
}

.hero-slider .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker background */
    color: white;
    padding: 30px; /* Increased padding */
    text-align: center;
    width: 80%;
    max-width: 800px; /* Increased max-width */
    border-radius: 10px; /* Added border-radius */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.slide-content h2 {
    margin-bottom: 10px;
    font-size: 3rem; /* Reduced font size */
    line-height: 1.3;
    font-family: 'Playfair Display', serif; /* Consistent font */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add text shadow */

}

.slide-content p {
    font-family: 'Roboto', sans-serif; /* Consistent font */
    font-size: 1.1rem; /* Slightly larger text */
    line-height: 1.6; /* Increased line-height */
    margin-bottom: 30px; /* Increased margin-bottom */
    text-align: center;
    max-width: 900px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add text shadow */
    z-index: 10;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    z-index: 20;
    padding: 0 30px; /* Increased padding */
}

.slider-controls button {
    background: transparent;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 35px; /* Increased font size */
    cursor: pointer;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.slider-controls button:focus {
    outline: none;
}

.slider-controls button:hover {
    opacity: 0.9;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px; /* Increased dot size */
    height: 12px; /* Increased dot size */
    border-radius: 50%;
    background-color: #ccc; /* Lighter dots */
    margin: 0 6px; /* Increased margin */
    cursor: pointer;
    transition: background-color 0.3s; /* Add a smooth transition */
}

.slider-dots .dot.active {
    background-color: #fff; /* Brighter active dot */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px; /* Reduced height on smaller screens */
    }

    .slide-content {
        padding: 20px;
        width: 90%; /* Wider content on small screens */
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 20px; /* Reduced margin */
    }

    .slider-controls {
        padding: 0 15px; /* Reduced padding */
    }

    .slider-controls button {
        font-size: 25px; /* Reduced button font size */
    }
}

@media (max-width: 480px) {
    .slide-content h2 {
        font-size: 1.5rem; /* Further reduced font size */
    }
    .slider-controls button {
        font-size: 1.5rem; /* Further reduced button font size */
    }
    .slider-dots .dot {
         width: 8px;
        height: 8px;
    }
}

/* ------------------------------- */
/* Updated Header Styles */
/* ------------------------------- */
header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4)); /* Consistent gradient */
    padding: 0;
    position: relative;
    width: 100%; /* Full width header */
    z-index: 50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
    transition: all 0.3s ease-in-out;
}

/* Top Header */
.header-top {
    background-color: #6e010163;
    padding: 8px 0; /* Adjusted padding */
    border-bottom: 1px solid #770303;
    text-align: center;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 15px; /* Added gap */
    padding: 0 20px; /* Add horizontal padding */
}

.header-top .user-actions-top{
    display: flex;
    gap: 10px;
}

.header-top .social-media-icons {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Main Header */
.header-main {
    padding: 10px 20px; /* Added horizontal padding */
    display: flex;
    align-items: center;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap; /* Allow wrapping */
    gap: 20px; /* Add gap between elements */
}

.brand-logo img {
    width: 180px; /* Match width in previous section */
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
    z-index: 10;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7)); /* Gold shadow */
}

.brand-logo a:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(169, 5, 5, 0.9));
}

.header-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto; /* Removed fixed width */
    flex-grow: 1; /* Allow it to grow */
    margin: 0 20px; /* Adjusted margin */
    transition: background-color 0.3s;
    border-radius: 5px;
    background-color: transparent; /* Removed background color */
    box-shadow: none; /* Removed box-shadow */
    z-index: 10;
    animation: none; /* Removed animation */
    opacity: 1; /* Ensure fully visible */
    visibility: visible; /* Ensure fully visible */
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Takes full width */
    max-width: 400px; /* Added max width */
    border-radius: 8px;
    background-color: #222;
    border: 1px solid #444;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s, border 0.3s;
}

.search-bar input {
    border: none;
    padding: 12px;
    flex-grow: 1;
    background-color: transparent;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem; /* Reset font size */
}

.search-bar input::placeholder {
    color: #fff;
    font-style: italic;
}

.search-bar button {
    background-color: #c00000;
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #990000;
}

.social-media-icons a {
    margin: 0 15px; /* Adjusted margin */
    font-size: 1.4rem; /* Adjusted font size */
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media-icons a:hover {
    color: #ffd700; /* Gold on hover */
    transform: scale(1.2);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0; /* Removed unnecessary margin */
}

.user-actions .btn-primary,
.user-actions .btn-secondary {
    padding: 10px 15px; /* Adjusted padding */
    font-size: 0.9em; /* Adjusted font size */
    box-shadow: none;
    white-space: nowrap;
    border-radius: 8px;
}

/* Keyframes (Removed from here and placed at the end) */

/* Responsive Design */
@media (max-width: 1024px) {
    .header-main-content {
         justify-content: center;

    }
    .header-middle {
        margin-left: 0; /* remove margin */
    }
}

@media (max-width: 768px) {
     .header-top-content {
        flex-direction: column; /* Stack content */
        gap: 10px;
    }
    .header-main-content {
        flex-direction: column; /* Stack content */
        gap: 10px;
    }
}

/* Animations (Moved Here) */
@keyframes fade-in {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}


/* ------------------------------- */
/* Updated Navbar Styles */
/* ------------------------------- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px; /* Adjusted padding for better balance */
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    margin-left: 10px;/*Add margin*/
}

.hamburger-menu span {
    display: block;
    width: 30px; /* Slightly reduced line width */
    height: 3px; /* Reduced line height */
    background-color: #fff;
    margin: 6px 0; /* Adjusted margin */
    transition: 0.3s ease; /* Smooth transitions */
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #222; /* Darker background */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7); /* Stronger shadow */
    z-index: 10;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu li {
    padding: 12px 20px; /* Adjusted padding */
    border-bottom: 1px solid #444; /* Lighter border */
    text-align: center;
}

.mobile-menu li a {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem; /* Adjusted font size */
    display: block;
    font-weight: 500; /* Add font weight */
}

.navbar-links {
    display: flex;
    align-items: center;
}

.navbar-links a {
    margin: 0 18px; /* Adjusted margin */
    font-weight: 500;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem; /* Adjusted font size */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.navbar-links a:hover {
    color: #ffd700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
}

.navbar-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* Darker background */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8); /* Stronger shadow */
    padding: 10px 20px; /* Adjusted padding */
    z-index: 100;
    transition: all 0.3s ease-in-out;
}

/* Hamburger Menu - Icon Animation */
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    transition: transform 0.3s;
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s 0.3s, opacity 0.3s;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    transition: transform 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .header-middle {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .search-bar {
        width: 100%;
        max-width: 100%;
    }

    .social-media-icons {
        order: 2;
    }

    .brand-logo {
        order: 1;
    }

    .user-actions {
        order: 4;
    }

      /* Mobile Menu */
    .mobile-menu {
        top: 80px;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .user-actions {
        display: none;
    }

     /* Mobile Menu */
    .mobile-menu {
        top: 80px;
    }
}

/* --- General Styles --- */
body {
    font-family: 'Lora', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #050505;
    background-image: url('/assets/images/bg.jpg');
    background-size: cover;
    background-attachment: fixed;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
    box-sizing: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    transform: translateY(-2px);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: #ffd700;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
}

/* --- Buttons --- */
.btn-primary, .btn-secondary {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background: linear-gradient(to right, #c00000, #990000);
    color: #fff;
    box-shadow: 0 0 10px rgba(192, 0, 0, 0.6);
}

.btn-primary:hover {
    background: linear-gradient(to right, #990000, #700000);
    box-shadow: 0 0 15px rgba(192, 0, 0, 0.8), 0 0 5px #ffd700;
    border-color: #ffd700;
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: #222;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #111;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 0 0 5px #ffd700;
    border-color: #ffd700;
    transform: translateY(-3px);
}

/* --- Section Title --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #333;
    padding-bottom: 15px;
}

/* --- Header --- */
header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
    padding: 20px 0;
    position: relative;
    width: 100%;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #fff;
}

.brand-logo img {
    width: 180px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
    transition: transform 0.3s ease;
}

.brand-logo:hover img {
    transform: scale(1.1);
}

.header-middle {
    display: flex;
    align-items: center;
}

.search-bar {
    display: flex;
    border: 1px solid #444;
    border-radius: 8px;
    overflow: hidden;
    background-color: #222;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    max-width: 400px;
}

.search-bar input {
    border: none;
    padding: 12px;
    flex-grow: 1;
    background-color: transparent;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.search-bar input::placeholder {
    color: #ffffff;
    font-style: italic;
}

.search-bar button {
    background-color: #c00000;
    color: #ffffff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #990000;
}

.social-media-icons {
    display: flex;
    align-items: center;
}

.social-media-icons a {
    margin: 0 15px;
    font-size: 1.4rem;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s;
}

.social-media-icons a:hover {
    color: #ffd700;
    transform: scale(1.2);
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 20px;
}

.user-actions .btn-primary,
.user-actions .btn-secondary {
    padding: 10px 15px;
    font-size: 0.9em;
    box-shadow: none;
    white-space: nowrap;
}


/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 2rem;
    

}

.hamburger-menu span {
    display: block;
    width: 10px;
    height: 3px;
    background-color: #bd0b0b;
    margin: 6px ;
    transition: 0.9s;

   
}

.hamburger-menu
  span:nth-child(1) {
    transform: translateY(0);
  }
  span:nth-child(2) {
    transform: translateY(6px);
  }
  span:nth-child(3) {
    transform: translateY(12px);
  }
  /* Hide the menu when it's not active */

/* --- Mobile Menu --- */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.mobile-menu.active {
    display: block;
}


.mobile-menu li {
    padding: 12px 20px;
    border-bottom: 1px solid #00000071;
    text-align: center;
}

.mobile-menu li a {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    display: block;
}

.navbar-links {
    display: flex;
    align-items: center;
}

.navbar-links a {
    margin: 0 20px;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
}

.navbar-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.656);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.283);
    padding: 10px 0;
    z-index: 100;
    transition: all 0.3s ease-in-out;
}
/*--- hamburger Animation ---*/
.hamburger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    transition: transform 0.3s;
}

.hamburger-menu.open span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
    transition: visibility 0s, opacity 0s 0.3s;
}

.hamburger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    transition: transform 0.3s;

}

/*--- mobile-menu scrollable ---*/
.mobile-menu {
    display: none;
    position: absolute;
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .user-actions-top {
        display: none;
    }

    .header-main-content {
        flex-direction: column;
        gap: 20px;
        margin: 0;
        padding: 20px;
        padding: 0;
        overflow-x: hidden;
        overflow-y: auto; /* Make the hero section scrollable */
    }
}


/* --- Hero --- */
.hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('/assets/images/events/1800.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: background-color 0.5s ease;
    height: 80vh;
}


/* --------------------------------- */
/* Event Categories */
/* --------------------------------- */
.event-categories {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Increased gap */
    padding: 0 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6); /* Darker background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); /* Stronger shadow */
    text-align: center;
    transition: all 0.3s ease;
    border: none; /*remove border*/
    color: #fff;
}

.category-card:hover {
    transform: translateY(-10px); /* Increased lift on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Increased shadow */
    background-color: rgba(128, 0, 0, 0.6);
}

.category-card i {
    font-size: 3rem;
    color: #ffd700; /* Gold icons */
    margin-bottom: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.category-card:hover i {
    color: #fff; /* White on hover */
    transform: scale(1.2);
}

.category-card span {
    font-weight: 600;
    font-size: 1.1rem; /* Adjusted font size */
    font-family: 'Roboto', sans-serif; /* Consistent font */
}

/* ---------------------------------- */
/* VIP Experience Section */
/* ---------------------------------- */
.vip-experience {
    position: relative;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}

.vip-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%); /* Corrected translate */
    object-fit: cover;
}

.vip-content {
    position: relative; /* Changed from 'center' to 'relative' */
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px; /* Increased padding */
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.9); /* Stronger shadow */
    text-align: left;
}

.vip-title {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif; /* Consistent font */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text-shadow*/
}

.vip-description, .vip-description-down{
    font-family: 'Roboto', sans-serif; /* Consistent font */
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ddd; /* Lighter text */
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text-shadow*/
}
.vip-description-down {
    font-size: 1.2rem; /* Increased font size */
    margin-bottom: 30px; /* increased margin*/
}

.vip-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.vip-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ddd; /* Lighter text */
}

.vip-benefits li i {
    color: #ffd700;
    margin-right: 10px;
    font-size: 1.2rem; /* Increase the icon size*/
}

.vip-call-to-action {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.vip-btn {
    display: inline-block;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .vip-content {
        padding: 20px;
        max-width: 100%; /* Takes full width on mobile */
    }

    .vip-title {
        font-size: 2rem;
    }

    .vip-description, .vip-description-down,
    .vip-benefits li,
    .vip-call-to-action {
        font-size: 0.9rem;
    }
    .vip-description-down {
       font-size: 1rem;
    }
     .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* smaller cards*/
    }
    
}
@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* smaller cards*/
    }
}



/* -------------------------------------- */
/* Event Listings */
/* -------------------------------------- */
.event-listings {
    padding: 60px 0;
    background-image: url('/assets/images/concert/red4.jpg'); /* Consistent background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
    border: none; /* Remove the border */
    color: #fff;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
}

.event-image-container {
    position: relative;
    overflow: hidden;
}

.event-image-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: transform 0.3s ease;
}

.event-image-container:hover img {
    transform: scale(1.1);
}

.event-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #c00000;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif; /* Add a consistent font */
    z-index: 2;
}

.event-info {
    padding: 25px;
}

.event-title {
    margin-bottom: 12px;
    font-size: 1.5rem; /* Increase size */
    letter-spacing: 1px;
    transition: color 0.3s;
    font-family: 'Playfair Display', serif; /* Add a consistent font */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text shadow */
}

.event-description {
    margin-bottom: 20px;
    color: #ddd; /* Lighter text */
    font-size: 1rem; /* Reduced font size */
    line-height: 1.6;
    transition: color 0.3s;
    font-family: 'Roboto', sans-serif; /* Consistent font */
}

/* ---------------------------------- */
/* Celebrity News Section */
/* ---------------------------------- */
.celebrity-news {
    padding: 60px 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.news-carousel {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
}

.news-item {
    position: relative;
    display: none;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); /* Increase shadow */
    transition: all 0.3s ease;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-item.active {
    display: block;
}

.news-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Increase shadow */
}

.news-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-title {
    margin: 0;
    font-size: 1.5rem; /* Reduced size */
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    font-family: 'Playfair Display', serif;
}

.news-link-btn {
    text-align: center;
}

.news-link-btn a {
    background-color: #c00000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
}

.news-link-btn a:hover {
    background-color: #990000;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.carousel-controls button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-controls button:hover {
    opacity: 0.7;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .news-carousel {
        max-width: 100%;
    }

    .event-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

     .event-title {
        font-size: 1.3rem;
    }
    .event-description{
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
     .event-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
     .event-title {
        font-size: 1.1rem;
    }
}


/* ----------------------------------- */
/* Testimonials Section */
/* ----------------------------------- */
.testimonials {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.testimonial-carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    width: 100%;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.testimonial-card.active {
    display: block;
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.testimonial-card .testimonial-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7; /* increased line height */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    font-family: 'Lora', serif; /* Changed to Lora */
    text-align: center;
}

.testimonial-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.testimonial-name {
    font-weight: bold;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.testimonial-name a {
    font-size: 1.5rem;
    color: #ffd700;
      font-family: 'Playfair Display', serif;
}

.testimonial-name span {
    font-weight: normal;
    font-size: 1rem;
        font-family: 'Roboto', sans-serif;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.carousel-controls button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-controls button:hover {
    opacity: 0.7;
}

/* /Users/KING/Desktop/cele/assets/css/style.css (Revised - CPC Card Section) */

/* --------------------------------- */
/* CPC Card Hero Section */
/* --------------------------------- */
.cpc-hero {
    position: relative;
    width: 100%;
    color: #fff;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
}

.cpc-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.cpc-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px; /* Increased padding */
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); /* Add a shadow*/
}

.cpc-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.cpc-hero-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* ------------------------------- */
/* CPC Card Benefits Section */
/* ------------------------------- */
.cpc-benefits {
    padding: 60px 0;
    background-color: #111;
    color: #ffffff;
}

.cpc-benefits .section-title {
    text-align: center;
    color: #ffd700;
}

.cpc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* change the size*/
    gap: 30px;
    padding: 0 20px;
}

.cpc-benefit-card {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /*Add transicion*/
}

.cpc-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.cpc-benefit-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    transition: transform 0.3s ease; /* Add transition to the icon */
}
.cpc-benefit-card h3 {
    font-size: 1.5rem; /* Increase a little the font-size*/
    margin-bottom: 10px;
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text shadow*/
    transition: all 0.3s; /* Add transition to the text*/
}

.cpc-benefit-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem; /* increase font-size*/
    line-height: 1.7; /* increase line-height*/
    color: #ddd; /* Change the text color*/
    transition: all 0.3s; /* Add transition to the text*/
}

.cpc-call-to-action,
.standard-protocol,
.non-disclosure {
    padding: 20px; /* increase the padding */
    background-color: rgba(0, 0, 0, 0.6); /* Darker background */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
}

.cpc-call-to-action p,
.standard-protocol p,
.non-disclosure p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    color: #ddd;
}


/* ---------------------------------- */
/* CPC Card Types Section */
/* ---------------------------------- */
.cpc-card-types {
    padding: 80px 20px;
    background-color: #000; /* Dark background */
    color: #fff; /* White text */
    position: relative;
}

.cpc-card-types .section-title {
    text-align: center;
    color: #ffd700; /* Gold title */
    margin-bottom: 30px;
     text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
     font-family: 'Playfair Display', serif; /* Consistent font */
}

.cpc-card-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust minmax as needed */
    gap: 30px;
    max-width: 1000px; /* Limit grid width */
    margin: 0 auto; /* Center the grid */
}

.cpc-card-type {
    background-color: rgba(0, 0, 0, 0.7); /* Darker background for cards */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); /* Stronger shadow */
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* space between elements */
    min-height: 350px;
    
}

.cpc-card-type:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Stronger hover effect */
}

.cpc-card-type h3 {
    color: #ffd700; /* Gold heading */
    font-size: 1.6rem; /* increase font-size*/
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif; /* Consistent font */
     text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text-shadow*/
}

.cpc-card-type p {
    font-family: 'Lora', serif; /* Consistent font */
    line-height: 1.7; /* increased line-height */
}

.cpc-card-price {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: auto; /* Push the price to the bottom */
     font-family: 'Roboto', sans-serif; /* Consistent font */
}
.cpc-btn, .mg-btn{
  width: 100%;
    text-align: center;
}

.cpc-btn.btn-primary, .mg-btn .btn-secondary {
    background: linear-gradient(to right, #930404, #880000);
    font-family: 'Roboto', sans-serif;
}

.cpc-btn.btn-primary:hover, .mg-btn .btn-secondary:hover {
    background: linear-gradient(to right, #930404, #660000);
}
.mg-btn {
    margin-top: 15px;
}
.mg-btn a{
   background-color: #222;
}
/* Responsive */
@media (max-width: 768px) {
      .cpc-hero {
        padding: 60px 20px; /* less space on small screen*/
    }
     .cpc-hero-content h1 {
        font-size: 2.5rem;
    }
   .cpc-hero-content {
    padding: 20px; /* adjust padding */
    }
    .cpc-hero-content p {
       font-size: 1rem;
    }
    .cpc-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller cards */
    }
    .cpc-card-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* smaller cards*/
  }
   .cpc-card-type p {
        font-size: 0.9rem; /* Less font-size*/
    }
}
@media (max-width: 480px) {
   .cpc-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Smaller cards */
    }
      .cpc-card-types-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* smaller cards*/
  }
     .cpc-hero-content h1 {
        font-size: 2rem;
    }

     .cpc-card-type p {
        font-size: 0.8rem; /* Less font-size*/
    }

    .cpc-benefit-card h3 {
        font-size: 1.4rem; /* reduce size */
    }
}



/* ----------------------------- */
/* FAQ Section */
/* ----------------------------- */
.faq {
    padding: 60px 0;
    background-image: url('/assets/images/concert/red4.jpg'); /* Consistent background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.faq-items {
    max-width: 800px; /* Increased max-width */
    margin: 0 auto; /* Center the content */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.6); /* Dark background */
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); /* Stronger shadow */
    overflow: hidden;
    border: none; /* Remove border */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px); /* Add a lift effect */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8); /* Stronger shadow */
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: transparent; /* Changed background */
    transition: background-color 0.3s ease;
}

.faq-item.active .faq-question {
    background-color: rgba(0, 0, 0, 0.2); /* Slight color change when active */
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffd700; /* Gold question color */
    font-family: 'Playfair Display', serif; /* Consistent font */
     text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text-shadow*/
}

.faq-question i {
    font-size: 1.3rem;
    color: #ffd700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #ccc; /* Lighter text */
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    text-align: justify;
}

/* -------------------------------- */
/* Newsletter Section */
/* -------------------------------- */
.newsletter {
    padding: 80px 20px;
    background-image: url('/assets/images/concert/Concert-Tickets.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly darker overlay */
    z-index: 0;
}

.newsletter .section-title {
    color: #ffd700; /* Gold title */
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    border-bottom: none;
    padding-bottom: 0;
      text-shadow: 0 0 10px rgba(0, 0, 0, 0.8); /* Add a text-shadow*/
}

.newsletter form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background-color: #111;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8); /* Increase the shadow*/
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.newsletter input[type="email"] {
    flex-grow: 1;
    padding: 15px 20px;
    border: none;
    background-color: transparent;
    color: #fff;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
}

.newsletter input[type="email"]::placeholder {
    color: #ccc;
    font-style: italic;
}

.newsletter button[type="submit"] {
    background: linear-gradient(to right, #b00000, #880000);
    color: #ffffff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    transition: background 0.3s ease, box-shadow 0.3s ease; /* Add transition to box-shadow */
}

.newsletter button[type="submit"]:hover {
    background: linear-gradient(to right, #880000, #660000);
      box-shadow: 0 0 10px #000000; /* Add a text-shadow*/
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter button[type="submit"] {
        width: 100%;
        padding: 12px 20px;
    }

    .newsletter input[type="email"] {
        width: 100%;
        padding: 12px 20px;
    }
    .faq-question {
        padding: 15px;
    }
    .faq-answer p{
        font-size: 0.9rem;
    }
}


/* footer */
footer {
    background-image: /* Darker background for contrast */
url('/assets/images/concert/Concert-Tickets.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;
    padding: 40px 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-widget {
    padding: 15px;
}

.footer-widget h3 {
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 1px solid #fffcfc;
    padding-bottom: 10px;
}

.footer-logo img{
    max-width: 200px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-media {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.social-media a {
    color: #ffffff;
    font-size: 20px;
    transition: color 0.3s;
}

.social-media a:hover {
    color: #ab1111; /* Example: blue hover */
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    gap: 15px;
}

.payment-methods img {
    max-width: 300px;
    height: auto;
    display: block;
}

.copyright {
    color: #ffffff;
    text-align: left;
}

.footer-contact {
    list-style: none;
    padding: 0;
}
.footer-contact li{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.footer-contact i{
    margin-right: 10px;
    color: #ab1111;
    width: 25px;
    text-align: center;
}

/* --- Page Loader --- */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #000;
    animation: rotate 2s linear infinite;
    box-shadow: 0 0 20px #c00000; /* Red glow effect */
    border: 3px solid #c00000;

}

.loader img{
    width: 100px; /* Adjust as needed */
    height: auto;
    animation: spin 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; /* Make the loader not clickable when hidden */
}

.content-wrapper {
    display: none; /* Initially hide the main content */
}

.content-wrapper.loaded {
    display: block; /* Show the content after loading */
}


/* about-us.html Specific Styles */

/* Page Header */
.page-header {
    background-color: #000000; /* Light background for the header */
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .page-header h1 {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 10px;
  }
  
  .page-header p {
    font-size: medium;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;



    /* Responsive design */
    @media (max-width: 768px) {
     .page-header {
        padding: 40px 20px;
      }
    }
    
  }
  
  /* About Company Section */
  .about-company {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 40px;
      background-image: url('/assets/images/concert/Concert-Tickets.jpg');
      position: relative;
      overflow: hidden;
      padding-bottom: 100px;
      
  }
  
  .about-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 50px;
      


      /* Responsive design */
      @media (max-width: 768px) {
       .about-company {
          padding: 20px;
        }
      }
      
  }
  
  .about-text {
      flex: 1 1 400px; /* Responsive flex basis */
  }
  
  .about-text h2 {
      font-size: 2.5em;
      color: #ffffff;
      margin-bottom: 20px;
  }
  
  .about-text p {
      font-size: 1.1em;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 15px;
  }
  
  .about-image {
      flex: 1 1 300px; /* Responsive flex basis */
      text-align: center;
  }
  
  .about-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Our Mission Section */
  .our-mission {
    background-image: url('/assets/images/concert/Concert-Tickets.jpg');
      padding: 50px 0;
      margin-bottom: 40px;
  }
  
  .mission-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      align-items: center;
  }
  
  .mission-image {
      flex: 1 1 300px;
      text-align: center;
  }
  
  .mission-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(209, 5, 5, 0.893);
  }
  
  .mission-text {
      flex: 1 1 400px;
      
  }
  
  .mission-text h2 {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 20px;


      /* Responsive design */
      @media (max-width: 768px) {
       .our-mission {
          padding: 20px;
        }
      }
  }
  
  .mission-text p {
      font-size: 1em;
      color: #ffffff;
      line-height: 1.6;
      margin-bottom: 15px;
      list-style: none;
      padding: 0;
      margin-bottom: 15px;


      /* Responsive design */
      @media (max-width: 768px) {
       .mission-content {
          flex-direction: column;
          align-items: center;
          gap: 0;
        }
      }
 

  }
  
  .mission-text ul {
    font-size: 1em;
      list-style: none;
      padding: 0;
      margin-bottom: 15px;
      font-weight: bold;



      /* Responsive design */
      @media (max-width: 768px) {
       .mission-content {
          flex-direction: column;
          align-items: center;
          gap: 0;
        }
      }

  }
  
  .mission-text li {
      margin-bottom: 10px;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: bold;
      font-style: italic;

  }
  
  .mission-text li i{
      color:#e7110e;
      margin-right: 10px;
      font-style: normal;


      /* Responsive design */
      @media (max-width: 768px) {
       .mission-text {
          flex-direction: column;
          align-items: center;
          gap: 0;
        }
      }

  }
  
  /* Our Values Section */
  .our-values {
      padding: 40px 0;
      text-align: center;
      margin-bottom: 40px;
      background-image: url('/assets/images/concert/Concert-Tickets.jpg');


      /* Responsive design */
      @media (max-width: 768px) {
       .our-values {
          padding: 20px;
        }
      }

      
  }
  
  .our-values h2 {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 30px;


      /* Responsive design */
      @media (max-width: 768px) {
       .our-values {
          padding: 20px;
        }
      }

      
  }
  
  .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
      gap: 20px;
      align-items: center;
      justify-content: space-between;


      /* Responsive design */
      @media (max-width: 768px) {
       .our-values {
          padding: 20px;
        }
      }

  }
  
  .value-card {
      background-color: #000000;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(234, 3, 3, 0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;


      /* Responsive design */
      @media (max-width: 768px) {
       .our-values {
          padding: 20px;
        }
      }
  }
  
  .value-card:hover {
      transform: translateY(-5px);
  }
  
  .value-card i {
      font-size: 2.5em;
      color: #e7110e;
      margin-bottom: 15px;
  }
  
  .value-card h3 {
      font-size: 1.5em;
      color: #ffffff;
      margin-bottom: 10px;
      text-align: center;
  }
  
  .value-card p {
      font-size: 1em;
      color: #ffffff;
      line-height: 1.5;
      margin-bottom: 20px;
      text-align: center;

      /* Responsive design */
      @media (max-width: 768px) {
       .our-values {
          padding: 20px;
        }
      }
  }
  
  /* Our Team Section */
  .our-team {
    background-image: url('/assets/images/concert/Concert-Tickets.jpg');
      padding: 50px 0;
      text-align: center;


      /* Responsive design */
      @media (max-width: 768px) {
       .our-team {
          padding: 20px;
        }
      }
  }
  
  .our-team h2 {
      font-size: 2.5em;
      color: #ffffff;
      margin-bottom: 30px;
  }
  
  .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid */
      gap: 20px;
  }
  
  .team-member {
      background-color: #000000;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 8px rgba(231, 5, 5, 0.1);
      transition: transform 0.3s ease;
  }
  
  .team-member:hover {
      transform: translateY(-5px);
  }
  
  .team-member img {
      max-width: 30%;
      height: auto;
      position: relative;
      border-radius: 50%;
      margin-bottom: 15px;

      
      /* Responsive design */
  }
  
  .team-member h3 {
      font-size: 1.3em;
      color: #000000;
      margin-bottom: 5px;
  }
  
  .team-member p {
      font-size: 1em;
      color: #ffffff;
      line-height: 1.5;
      margin-bottom: 10px;
      text-align: center;
      /* Responsive design */
      @media (max-width: 768px) {
         .our-team {
              padding: 20px;
          }
      }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
      .about-content,
      .mission-content {
          gap: 20px;
      }
  
      .about-text,
      .mission-text {
          flex: 1 1 100%;
      }
      .about-image, .mission-image{
           flex: 1 1 100%;
      }
  
      .values-grid,
      .team-grid {
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      }
  
      .mission-text ul {
          padding-left: 20px;
      }
  
      .page-header h1 {
        font-size: 2.5em;
      }
      
      .our-values h2, .our-team h2 {
        font-size: 2em;
      }
      
      .about-text h2, .mission-text h2 {
          font-size: 2em;
      }
  }
  


/* Ticket Packages Section */
.ticket-packages {
    padding: 40px 0;
    background-color: #000000;
}

.ticket-packages .section-title {
    text-align: center;
    margin-bottom: 30px;
}

.ticket-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ticket-card {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(220, 6, 6, 0.83);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ticket-card:hover {
    transform: translateY(-5px);
}

.ticket-header {
    background-image: url('/assets/images/concert/red4.jpg'); 
    color: #ff0707;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.ticket-header h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: center;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}


.ticket-header .price {
    font-size: 1.2em;
    font-weight: 600;
}

.ticket-body {
    padding: 20px;
    flex-grow: 1;
}

.ticket-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.ticket-body li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ticket-body li i {
    margin-right: 10px;
    font-size: 1.1em;
}
.ticket-body li .fa-check-circle {
    color: green;
}

.ticket-body li .fa-times-circle {
    color: red;
}

.ticket-footer {
    padding: 20px;
    border-top: 1px solid #f20707;
    text-align: center;
}

/* Call to Action Section */
.cta-section {
    background-color: #ffffff;
    color: #ffffff;
    padding: 50px 0;
    text-align: center;


    /* Responsive design */
    @media (max-width: 768px) {
       .cta-section {
            padding: 20px;
        }
    }


}

.cta-section h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    text-align: center;
}

.cta-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Ongoing Shows section */

.ongoing-shows {
    padding: 40px 0;
    background-color: #000000;
}

.ongoing-shows .section-title{
    text-align: center;
    margin-bottom: 30px;
}

.ongoing-shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px;
}

.ongoing-show-card {
    background-color: #000000; /* Light gray */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(198, 7, 7, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ongoing-show-card:hover {
    transform: translateY(-5px);
}

.ongoing-show-card .show-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}
.ongoing-show-card .show-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.ongoing-show-card .show-info {
    flex-grow: 1;
}

.ongoing-show-card .show-title {
    font-size: 1.3em;
    color: #ffffff;
    margin-bottom: 10px;
}

.ongoing-show-card .show-celebrity {
    font-size: 1.1em;
    color: #ffffff;
    margin-bottom: 10px;
}

.ongoing-show-card .show-location {
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 10px;
}

.ongoing-show-card .show-date {
    font-size: 1em;
    color: #ffffff;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 1.8em;
    }

    .cta-section p {
        font-size: 1em;
    }
    .ticket-grid, .ongoing-shows-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    }
}



.btn-small {
    font-size: 0.8em;
    padding: 8px 15px;
    font-weight: normal;
    display: inline-block;
}

/* News Listings Section */
.news-listings {
    padding: 40px 0;
    background-color: #000000;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}


.news-listings h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.news-listings p {
    font-size: 1.

}


/* ========================================= */
/* Contact Us Page Styles (contact-us.html) */
/* ========================================= */

/* Contact Info Section */
.contact-info {
    padding: 40px 0;
    background-image: url('/assets/images/concert/red4.jpg');
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(223, 6, 6, 0.935);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
}

.contact-info-card i {
    font-size: 2.5em;
    color: #dd0b0b;
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.5;
}

.contact-info-card p {
    font-size: 1em;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Map Section */
.contact-map {
    padding: 40px 0;
    background-image: url('/assets/images/concert/red4.jpg');
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.map-container iframe{
     width: 100%;
}

/* Contact Form Section */
.contact-form {
    padding: 40px 0;
    background-image: url('/assets/images/concert/red4.jpg');
}

.contact-form form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #d80d0de9;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ff0000;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form textarea {
    resize: vertical;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

      .map-grid {
         grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ========================= */
/* News Page Styles (news.html) */
/* ========================= */

/* News Listings Section */
.news-listings {
    padding: 40px 0;
    background-color: #000000; /* Light gray background */
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 30px;
}

.news-card {
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}
.news-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.news-content {
    padding: 20px;
    flex-grow: 1; /* Make content take up remaining space */
}

.news-title {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 10px;
}

.news-excerpt {
    font-size: 1em;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    }
}


/* --- Booking Section --- */
.booking {
    background-color: #000;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
}
.booking-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
    margin-top: 30px;
}

.booking-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    text-align: center;
    position: relative; /* Needed for the overlay */
    overflow: hidden; /* Hide overlay overflow */
    transition: all 0.3s ease; /* Smooth transition for all properties */
    border: 1px solid #c00000; /* Add a border */
    color: white;
}

.booking-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    border-color: #ffd700; /* Change border color on hover */
}

.booking-option i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffd700;
    transition: transform 0.3s ease;
    z-index: 1; /* Ensure icon is above the overlay */
}

.booking-option:hover i {
    transform: scale(1.1);
}

.booking-option span {
    font-size: 1.2rem;
    font-weight: 600;
    z-index: 1; /* Ensure text is above the overlay */
}

/* Overlay Effect */
.booking-option .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 0, 0, 0.7); /* Initial overlay color */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease, background-color 0.3s ease; /* Smooth transition for opacity and background color */
    z-index: 0; /* Place overlay below icon and text */
    border-radius: 10px; /* Match the card's border radius */
}

.booking-option:hover .overlay {
    opacity: 1; /* Show overlay on hover */
     background: rgba(192, 0, 0, 0.9); /* Darker overlay on hover */
}


/* --- Responsive --- */
@media (max-width: 768px) {
    .booking-options {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    .booking-option {
        padding: 20px;
    }
    .booking-option i {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }
    .booking-option span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-options {
        grid-template-columns: 1fr; /* Stack on small screens */
    }
}

/* in your style.css file or a new CSS file*/
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #000000;
    border: 1px solid #fb1111e9;
    border-top: none;
    z-index: 10; /* Ensure it's above other content */
    max-height: 200px; /* Limit the height to create scrollability */
    overflow-y: auto; /* Add vertical scroll if needed */
}

.search-result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #c61a1a;
}

.search-result-item:hover {
    background-color: #eb0f0f;
}


/* --- Privacy Policy Page --- */
.privacy-policy {
    padding: 60px 0;
    background-image: url('/assets/images/concert/red4.jpg'); /* Consistent background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.privacy-policy .section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700; /* Gold title */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border-bottom: none;
    padding-bottom: 0;
    font-family: 'Playfair Display', serif;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6); /* Dark background for content */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    color: #ccc;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    font-family: 'Playfair Display', serif; /* Consistent font */
}

.policy-content p,
.policy-content li {
    font-family: 'Roboto', sans-serif; /* Consistent font */
    font-size: 1rem;
    line-height: 1.7; /* Increased line height */
    margin-bottom: 15px;
    text-align: justify;
}

.policy-content a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #ffd700;
}

.policy-content ul {
    padding-left: 30px; /* Increased padding */
    margin-bottom: 20px;
}
.policy-content ul li {
   list-style-type: disc;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 20px;
    }

    .policy-content h2 {
        font-size: 1.6rem;
    }

    .policy-content p,
    .policy-content li {
        font-size: 0.9rem;
        line-height: 1.5; /* Reduced line height */
    }
}


 


/* /assets/css/style.css (Append to this file) */
/* --- Terms & Conditions Page --- */
.terms-conditions {
    padding: 60px 0;
    background-image: url('/assets/images/concert/red4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.terms-conditions .section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    border-bottom: none;
    padding-bottom: 0;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    color: #ccc;
}

.terms-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.terms-content p,
.terms-content li {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: justify;
}

.terms-content a {
    color: #007bff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-content a:hover {
    color: #ffd700;
}

.terms-content ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.terms-content li{
    list-style-type: disc;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-content {
        padding: 20px;
    }

    .terms-content h2 {
        font-size: 1.6rem;
    }

    .terms-content p,
    .terms-content li {
        font-size: 0.9rem;
    }
}

/* /Users/KING/Desktop/cele/assets/css/style.css (Revised - Update Meet & Greet Form Styles) */

/* ------------------------------------------ */
/* Meet & Greet Booking Form Styles */
/* ------------------------------------------ */
.meet-greet-booking {
    background-color: #222; /* Dark background */
    padding: 40px 0;
    font-family: 'Poppins', sans-serif;
    color: #fff; /* Light text color for contrast */
}

.booking-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #333; /* Darker container background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Stronger shadow */
}

.booking-form-container .section-title {
    text-align: center;
    margin-bottom: 20px;
    color: #fff; /* White title color */
    font-family: 'Playfair Display', serif;
}

.selected-celebrity {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #eee; /* Lighter text */
    font-style: italic;
}

.selected-celebrity strong {
    color: #c20808; /* Or your brand's primary color */
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #fff; /* White label color */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555; /* Darker border */
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s;
    background-color: #444; /* Dark input background */
    color: #fff; /* White input text */
    font-family: 'Roboto', sans-serif;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #9f2705; /* Or your brand's primary color */
    outline: none;
}

.form-group select {
    appearance: none; /* Remove default arrow in some browsers */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position-x: 98%;
    background-position-y: 50%;
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing only */
    min-height: 100px;
     font-family: 'Roboto', sans-serif;
}

.form-group .btn-primary {
    width: auto;
    padding: 10px 20px;
    font-size: 1.1em;
    display: block;
    margin: 20px auto 0 auto; /* Center the button */
    border: none;
    cursor: pointer;
    background-color: #893409;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
    .booking-form-container {
        padding: 20px;
    }
}
@media (max-width: 480px) {
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group input[type="date"],
    .form-group input[type="time"],
    .form-group input[type="number"],
    .form-group select,
    .form-group textarea {
    font-size: 0.9em;
    }
    .form-group .btn-primary {
        padding: 8px 16px;
    }
}


/* CPC Card Intro Section */
.cpc-card-intro {
    background-color: #000000; /* Light gray background */
    padding: 60px 0;
    text-align: center;
}

.cpc-card-intro-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(130, 4, 4, 0.1);
    border-radius: 10px;
}

.cpc-card-intro-description {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cpc-card-intro-benefits {
    text-align: left;
    margin-bottom: 30px;
}

.cpc-card-intro-benefits h3 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.cpc-card-intro-benefits ul {
    list-style: none;
    padding: 0;
}

.cpc-card-intro-benefits li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.cpc-card-intro-benefits li:last-child {
    border-bottom: none;
}

.cpc-card-intro-benefits li i {
    color: #d70d0d; /* Blue color for the check icon */
    margin-right: 10px;
    font-size: 1.2em; /* slightly bigger icons */
}

.cpc-card-intro-application {
    text-align: left;
}

.cpc-card-intro-application h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.cpc-card-intro-application p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cpc-card-intro .btn-primary {
    display: inline-block;
    background-color: #007bff; /* primary blue */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cpc-card-intro .btn-primary:hover {
    background-color: #0056b3; /* darker blue on hover */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cpc-card-intro-content {
        padding: 15px;
    }

    .cpc-card-intro-benefits li,
    .cpc-card-intro-application p,
    .cpc-card-intro-description {
        font-size: 0.9rem;
    }
    
    .cpc-card-intro-benefits li i{
        font-size: 1em;
    }
}


/*-------------------------------*/
/* VIP Packages Section */
/*-------------------------------*/
.cpc-card-types {
    padding: 60px 0;
    background-color: #050505; /* dark background */
}

.cpc-card-types .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add horizontal padding */
}

.cpc-card-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px; /* Keep horizontal padding */
}

.cpc-card-type {
    background-color: #000000; /* dark card */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    align-items: flex-start;
}

.cpc-card-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
}

.cpc-card-type > div {
  display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 15px;
}

.cpc-card-type h3 {
    font-size: 1.8rem;
    margin-bottom: 0px;
    color: #ffd700;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.cpc-card-type p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 0px;
    text-align: left;
}

.mg-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cpc-card-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

/*-------------------------------*/
/* Benefits Section */
/*-------------------------------*/
.cpc-benefits {
    padding: 60px 0;
    background-color: #000000; /* Very dark background */
    color: #ffffff;
}

.cpc-benefits .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Add horizontal padding */
}

.cpc-benefits .section-title {
    text-align: center;
    color: #ffd700; /* gold title */
    width: 100%;
}

.cpc-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px; /* Keep horizontal padding */
}

.cpc-benefit-card {
    background-color: rgba(0, 0, 0, 0.6); /* dark card */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cpc-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
}

.cpc-benefit-card i {
    font-size: 3rem;
    color: #ffd700; /* Gold icon */
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.cpc-benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #ffd700; /* gold text */
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.cpc-benefit-card p {
      font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 0px;
    text-align: left;
}

/*-------------------------------*/
/* Responsive Design */
/*-------------------------------*/
@media (max-width: 768px) {
    .cpc-card-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cpc-card-type {
         padding: 20px;
         align-items: center;
    }

    .cpc-card-type h3 {
        font-size: 1.5rem;
    }
    .cpc-benefit-card {
        padding: 20px;
    }
    .mg-btn {
         flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .cpc-card-type > div {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 480px) {
    .cpc-card-types-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .cpc-card-type {
         padding: 15px;
    }
     .cpc-card-type h3 {
        font-size: 1.3rem;
    }
    .cpc-card-price {
        font-size: 1.1rem;
    }
    .cpc-benefit-card {
         padding: 15px;
    }
    .cpc-benefit-card h3{
          font-size: 1.3rem;
    }
}
