
:root {
    --primary: #6c5ce7;
    --secondary: #00cec9;
    --dark: #2d3436;
    --light: #ffffff;
    --gray: #f1f2f6;
    --text: #2d3436;
}

.welcome-section {
    background-color: var(--primary);
    color: white;
    padding: 2rem;
    text-align: center;
}

.welcome-text {
    font-size: 1.1rem;
    margin-top: 10px;
}

.hero-content {
    text-align: center;
    padding: 1rem 0;
}

.hero-image {
    width: 90%;
    max-width: 600px;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quick-actions {
    padding: 2rem 1rem;
    background-color: var(--gray);
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.action-card {
    background-color: var(--light);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

    .action-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .action-card i {
        font-size: 2rem;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

    .action-card span {
        display: block;
        font-weight: 600;
    }

.process-section {
    padding: 2rem 1rem;
    background-color: white;
}

    .process-section h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        text-align: center;
        color: var(--dark);
    }

.pro-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-item {
    background-color: var(--gray);
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    transition: background 0.3s;
}

    .pro-item:hover {
        background-color: #e0e0e0;
    }

    .pro-item img {
        width: 40px;
        margin-bottom: 0.5rem;
    }

.testimonials {
    padding: 2rem 1rem;
    background-color: var(--gray);
    text-align: center;
}

    .testimonials h2 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
        color: var(--dark);
    }

.testimonial-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-card {
    background-color: var(--light);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-style: italic;
}

    .testimonial-card h4 {
        margin-top: 1rem;
        font-weight: 600;
        color: var(--primary);
    }


@media (max-width: 480px) {
    .welcome-text {
        font-size: 1rem;
    }

    .pro-item {
        font-size: 0.9rem;
    }

    .action-card {
        padding: 0.8rem;
    }

    .hero-image {
        width: 100%;
    }
}

/* Login  */
.login-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    max-width: 400px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

    .login-box h2 {
        font-weight: 600;
        text-align: center;
        margin-bottom: 10px;
    }

    .login-box p {
        font-size: 0.95rem;
        text-align: center;
        color: #555;
        margin-bottom: 20px;
    }

    .login-box img {
        display: block;
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border-radius: 50%;
        border: 2px solid #ccc;
    }

.form-control {
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.btn-login {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #1e52f7, #00edff);
    color: #fff;
    transition: 0.3s;
}

    .btn-login:hover {
        background: linear-gradient(to right, #f2a100, #fbe45e);
    }

.text-small {
    font-size: 0.85rem;
    text-align: center;
}

    .text-small a {
        text-decoration: none;
    }

        .text-small a:hover {
            text-decoration: underline;
        }

asp\:Label {
    display: block;
    font-size: 0.9rem;
    margin-top: 10px;
}




/* Signup  */

.signup-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

    .signup-box h2 {
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
    }

    .signup-box p {
        font-size: 0.95rem;
        color: #555;
        text-align: center;
        margin-bottom: 20px;
    }

.form-control {
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.form-select {
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.btn-signup {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
    transition: 0.3s;
}

    .btn-signup:hover {
        background: linear-gradient(to right, #5a67d8, #6b46c1);
    }

.text-small {
    font-size: 0.85rem;
    text-align: center;
}

    .text-small a {
        color: #667eea;
        text-decoration: none;
    }

        .text-small a:hover {
            text-decoration: underline;
        }

.error-label {
    color: red;
    font-size: 0.85rem;
    display: block;
    margin-top: -10px;
    margin-bottom: 10px;
}

/* home  */

.welcome-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 25px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: all 0.3s ease;
}

    .welcome-box:hover {
        transform: scale(1.01);
    }

    .welcome-box h2 {
        font-weight: 600;
        font-size: 1.75rem;
        color: #333;
    }

.welcome-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 20px auto;
    border-radius: 50%;
    border: 3px solid #ccc;
}

.welcome-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 25px;
}

.btn-custom {
    display: block;
    width: 100%;
    padding: 12px 0;
    margin: 10px 0;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease;
}

    .btn-custom:hover {
        background: linear-gradient(135deg, #5a7bf6, #9a64dc);
        transform: translateY(-2px);
    }

@media (max-width: 400px) {
    .welcome-box h2 {
        font-size: 1.4rem;
    }

    .welcome-text {
        font-size: 0.9rem;
    }

    .btn-custom {
        font-size: 0.95rem;
        padding: 10px 0;
    }
}


/* contact us  */

.custom-welcome-section {
    background: #fffffffc;
    text-align: center;
}

.custom-welcome-content h2 {
    font-size: 32px;
    color: #222;
}

.custom-welcome-text {
    color: #555;
    font-size: 16px;
    max-width: 800px;
    margin: 10px auto;
}

.custom-contact-section {
    padding: 40px 20px;
    background-color: #fff;
}

.custom-contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
}

.custom-contact-content {
    background: #fafafa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.custom-form-group {
    margin-bottom: 15px;
}

.custom-form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.custom-form-textarea textarea {
    resize: none;
    height: 120px;
}

.custom-button {
    background-color: #ff4c60;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
}

    .custom-button:hover {
        background-color: #e44356;
    }

.custom-contact-card {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #ff4c60;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
}

.custom-card-title {
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.custom-card-data {
    font-size: 14px;
    color: #555;
}



/* about us  */

.section-wrapper {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-description {
    color: #555;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 25px;
    line-height: 1.8;
    text-align: justify;
}

.about-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
}

    .about-social-icons li a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #ff4c60;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        transition: 0.3s ease;
    }

        .about-social-icons li a:hover {
            background: #e63850;
        }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
}

    .service-card i {
        font-size: 36px;
        color: #ff4c60;
        margin-bottom: 10px;
    }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

    .team-member img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 10px;
    }

    .team-member h4 {
        margin: 10px 0 5px;
        font-size: 18px;
        color: #222;
    }

    .team-member p {
        font-size: 14px;
        color: #666;
    }

.testimonial-box {
    background: #fdfdfd;
    border-left: 5px solid #ff4c60;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    font-style: italic;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
    margin-top: 10px;
}

/* Mobile Responsive Tweaks */
@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 15px;
    }

    .about-social-icons li a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}
/* Venues  */

.venue-hero {
    text-align: center;
    color: #EFE9E5;
    background: linear-gradient(45deg, #2c3e50, #3498db);
}

    .venue-hero h2 {
        font-size: 36px;
        color: #333;
    }

.venue-description {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.search-bar {
    text-align: center;
    margin-bottom: 40px;
}

    .search-bar input[type="text"] {
        width: 80%;
        max-width: 400px;
        padding: 10px 15px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 8px;
    }

.venue-list-section {
    padding: 20px;
    background: #f9f9f9;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

    .venue-card:hover {
        transform: translateY(-5px);
    }

    .venue-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
    }

    .venue-card h3 {
        font-size: 20px;
        color: #222;
        margin-bottom: 10px;
    }

.venue-details {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    text-align: left;
    font-size: 15px;
    color: #444;
}

    .venue-details li {
        padding: 4px 0;
        border-bottom: 1px solid #eee;
    }

.venue-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

    .venue-buttons a {
        background-color: #ff4f5a;
        color: #fff;
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-size: 14px;
        transition: background 0.3s;
    }

        .venue-buttons a:hover {
            background-color: #e63e4a;
        }

.stars {
    color: #ffc107;
    font-size: 16px;
}

@media (max-width: 600px) {
    .venue-hero h2 {
        font-size: 28px;
    }

    .venue-card img {
        height: 150px;
    }

    .venue-buttons {
        flex-direction: column;
        gap: 8px;
    }
}

/* Forget  */


.forgot-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.forgot-container {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.forgot-title {
    font-size: 26px;
    color: #333333;
    margin-bottom: 10px;
}

.forgot-subtitle {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.forgot-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.forgot-form input[type="email"],
.forgot-form .forgot-button {
    width: 90%;
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 8px;
    border: 1px solid #cccccc;
    font-size: 14px;
}

.forgot-button {
    background-color: #ff4f5a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .forgot-button:hover {
        background-color: #e13c47;
    }

.forgot-message {
    font-size: 13px;
    color: #444444;
    margin-top: 10px;
}

    .forgot-message a {
        color: #007bff;
        text-decoration: none;
    }

        .forgot-message a:hover {
            text-decoration: underline;
        }

@media (max-width: 480px) {
    .forgot-container {
        padding: 30px 20px;
    }
}


/* gallery  */


.gallery-hero-section {
    text-align: center;
    padding: 3rem 1rem;
    background: #6c5ce7;
    border-radius: 12px;
    margin: 1rem;
}

.gallery-hero-title {
    font-size: 2rem;
    font-weight: bold;
    color: #efe9e9;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2c3e50, #3498db);
}

.gallery-hero-desc {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    padding: 2rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .gallery-image:hover {
        transform: scale(1.05);
    }

@media (max-width: 600px) {
    .gallery-hero-title {
        font-size: 1.5rem;
    }

    .gallery-hero-desc {
        font-size: 1rem;
    }
}


/*events*/

/* Welcome Section */
.events-welcome-section {
    text-align: center;
}

.events-welcome-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #efe9e9;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2c3e50, #3498db);
}

.events-welcome-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

/* Hero Section */
.events-hero-section {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.events-hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.events-hero-heading {
    margin-top: 20px;
    font-size: 1.8rem;
    color: #444;
}

/* Filter Section */
.events-filter-section {
    padding: 40px 20px;
    background-color: #f3f3f3;
}

.events-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: auto;
}

.events-filter-card {
    display: block;
    background: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

    .events-filter-card:hover {
        background-color: #007BFF;
        color: #fff;
        transform: translateY(-3px);
    }

/* Dynamic Events List */
.events-list-container {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.event-card {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.event-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .event-card:hover {
        transform: translateY(-5px);
    }

.event-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.event-category,
.event-address,
.event-contact,
.event-guests {
    font-size: 1rem;
    color: #555;
    margin: 5px 0;
}

    .event-category span,
    .event-address span,
    .event-contact span {
        font-weight: 600;
        color: #111;
    }

.event-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.event-icon {
    font-size: 1.3rem;
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .event-icon:hover {
        color: #0056b3;
    }

    .event-icon.booked {
        color: #28a745;
    }

    .event-icon.book-now {
        color: #FF5722;
    }




@media (max-width: 600px) {
    .events-welcome-heading {
        font-size: 2rem;
    }

    .events-hero-heading {
        font-size: 1.5rem;
    }

    .events-filter-card {
        font-size: 0.9rem;
        padding: 10px;
    }
}


/* Blogs Page Styles */
.blogs-welcome-section {
    font-size: 2rem;
    font-weight: bold;
    color: #efe9e9;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2c3e50, #3498db);
}

.blogs-welcome-content h2 {
    font-size: 34px;
    margin-bottom: 10px;
    color: #efe9e9;
    text-align: center;
}

.blogs-welcome-text {
    color: #666;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.blogs-filter-section {
    margin: 30px auto;
    padding: 20px;
    text-align: center;
}

.blogs-filter-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.blogs-filter-btn {
    background-color: #fff;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: 0.3s ease;
}

    .blogs-filter-btn:hover {
        background-color: #0077cc;
        color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

.blogs-message-label {
    display: block;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    color: red;
}

.blogs-list-panel {
    padding: 30px;
    margin: 20px auto;
    background: #fff;
    border-radius: 10px;
    max-width: 1100px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.blog-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

    .blog-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-title {
    font-size: 20px;
    color: #333;
    margin: 0;
}

.blog-featured {
    color: #f39c12;
    font-weight: bold;
    font-size: 14px;
}

.blog-body {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

.blog-meta {
    margin-top: 15px;
    font-size: 14px;
    color: #777;
}

    .blog-meta i {
        margin-right: 5px;
    }
/*events booking*/
.booking-form-container {
    max-width: 650px;
    margin: 40px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.booking-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

.booking-field {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: border 0.3s ease;
}

    .booking-field:focus {
        border-color: #5e72e4;
        background-color: #fff;
        outline: none;
    }

.booking-submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #5e72e4;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .booking-submit-btn:hover {
        background-color: #324cdd;
    }

@media (max-width: 600px) {
    .booking-form-container {
        padding: 20px;
    }
}

.welcome-section {
    padding: 40px 20px 10px;
}

.welcome-content h2 {
    margin-bottom: 10px;
}

.welcome-text {
    font-size: 16px;
    color: #666;
}

/* Admin Events - Welcome Section */
.admin-events-welcome {
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}

.admin-events-title {
    color: #222;
}

/* Admin Events - Filter Buttons */
.admin-events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.admin-events-btn {
    padding: 10px 16px;
    border: 1px solid #007bff;
    border-radius: 8px;
    text-decoration: none;
    color: #007bff;
    background-color: #fff;
    transition: 0.3s ease;
    font-weight: 500;
}

    .admin-events-btn:hover {
        background-color: #007bff;
        color: white;
    }

/* Admin Events - Event List */
.admin-events-list-container {
    padding: 0 15px;
}

.admin-events-card {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 5px solid #007bff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.admin-events-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

.admin-events-detail {
    margin: 5px 0;
    color: #333;
}

.admin-events-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    font-size: 18px;
}

    .admin-events-actions a {
        color: #007bff;
        transition: 0.3s ease;
    }

        .admin-events-actions a:hover {
            color: #0056b3;
            transform: scale(1.1);
        }

/* BLOG MAIN SECTION */
.admin-blog-section {
    background-color: #f5f7fa;
    padding: 40px 20px 20px;
    text-align: center;
}

.admin-blog-header {
    max-width: 800px;
    margin: 0 auto;
}

.admin-blog-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.admin-blog-description {
    font-size: 16px;
    color: #7f8c8d;
}

/* FILTER & ACTIONS */
.admin-blog-actions {
    margin: 30px auto;
    padding: 10px 20px;
}

.admin-blog-action-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.admin-blog-action-card {
    background-color: #3498db;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease;
}

    .admin-blog-action-card:hover {
        background-color: #2980b9;
    }

.admin-blog-addnew {
    background-color: #2ecc71;
}

    .admin-blog-addnew:hover {
        background-color: #27ae60;
    }

.admin-blog-message {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: #e74c3c;
}

/* BLOG LIST AREA */
.admin-blog-list {
    margin: 30px auto;
    padding: 20px;
    max-width: 1000px;
}

.admin-blog-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.admin-blog-titlebar {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 6px;
}

.featured-icon {
    color: gold;
    margin-left: 8px;
}

.admin-blog-meta {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.admin-blog-author {
    font-size: 14px;
    color: #34495e;
    margin-bottom: 10px;
}

.admin-blog-actions a {
    font-size: 14px;
    color: #2980b9;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

    .admin-blog-actions a:hover {
        color: #1abc9c;
    }



.admin-blogedit-welcome {
    background: #f5f5f5;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #ddd;
}

.admin-blogedit-welcome h2 {
    font-size: 32px;
    color: #2c3e50;
}

.admin-blogedit-welcome .welcome-text {
    font-size: 16px;
    color: #7f8c8d;
    margin-top: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.admin-blogedit-form {
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
}

    .admin-blogedit-form input[type="text"],
    .admin-blogedit-form textarea,
    .admin-blogedit-form select {
        width: 100%;
        padding: 10px 15px;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 15px;
    }

    .admin-blogedit-form textarea {
        resize: vertical;
    }

.admin-blogedit-featured {
    margin-bottom: 20px;
    font-size: 16px;
    color: #2c3e50;
}

.admin-blogedit-button {
    background-color: #3498db;
    border: none;
    padding: 12px 25px;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .admin-blogedit-button:hover {
        background-color: #2980b9;
    }

/*admin user*/
.admin-users-welcome {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.admin-users-welcome h2 {
    font-size: 32px;
    color: #2c3e50;
}

.admin-users-welcome .welcome-text {
    font-size: 16px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 10px auto;
}

.admin-users-links {
    margin-top: 30px;
}

.admin-users-button {
    display: inline-block;
    margin: 5px 10px;
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.3s ease;
}

    .admin-users-button:hover {
        background-color: #2980b9;
    }

/* Optional: style the list content area */
.admin-users-list {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.admin-users-list {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.admin-user-card {
    background: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.admin-user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .admin-user-header h3 {
        font-size: 20px;
        margin: 0;
        color: #2c3e50;
    }

.admin-user-id {
    font-size: 14px;
    color: #999;
    margin-left: 10px;
}

.admin-user-role {
    font-size: 14px;
    color: #16a085;
}

.admin-user-email,
.admin-user-contact {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.admin-user-actions {
    margin-top: 10px;
}

    .admin-user-actions .edit-link {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
    }

        .admin-user-actions .edit-link:hover {
            text-decoration: underline;
        }



.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.notification-icon {
    font-size: 1.5rem;
    color: #007bff;
    position: relative;
}

.notification-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
}

.notification-container {
    max-width: 100%;
    margin: auto;
    padding: 10px;
}

.notification {
    background-color: #fff;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    position: relative;
}

    .notification i {
        color: #007bff;
        margin-right: 10px;
        font-size: 1.1rem;
    }

    .notification time {
        font-size: 12px;
        color: #888;
        position: absolute;
        top: 12px;
        right: 15px;
    }

    .notification .mark-read {
        position: absolute;
        bottom: 10px;
        right: 15px;
        background: #007bff;
        color: white;
        padding: 4px 8px;
        font-size: 12px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }

h2 {
    margin: 0;
    font-size: 1.5rem;
}

@media screen and (max-width: 480px) {
    .notification {
        padding: 12px;
    }

        .notification time,
        .notification .mark-read {
            position: static;
            display: block;
            text-align: right;
            margin-top: 5px;
        }

    h2 {
        font-size: 1.3rem;
    }
}


.upload-section {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 8px;
}

label {
    display: block;
    margin-top: 10px;
}

input[type="text"], select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
}

input[type="submit"], .delete-btn {
    margin-top: 15px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.delete-btn {
    background-color: #dc3545;
}

input[type="submit"]:hover {
    background: #0056b3;
}

.delete-btn:hover {
    background-color: #b52b37;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.theme-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .theme-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .theme-card .info {
        padding: 10px;
    }

        .theme-card .info h4 {
            margin: 0;
            font-size: 16px;
        }

        .theme-card .info span {
            font-size: 12px;
            color: gray;
        }

    .theme-card .actions {
        padding: 10px;
        text-align: right;
    }

@media (max-width: 600px) {
    .theme-card {
        width: 100%;
    }
}




.receipt {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    border: 1px solid #000;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.receipt h2 {
    text-align: center;
    margin-bottom: 20px;
}

.receipt hr {
    margin: 20px 0;
}

.download-note {
    margin-top: 30px;
    font-size: 12px;
    text-align: center;
    color: #888;
}

.btn-download {
    display: block;
    margin: 20px auto;
    background-color: #007bff;
    color: white;
    padding: 10px 25px;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-download:hover {
        background-color: #0056b3;
    }


.search-section {
    padding: 30px;
    text-align: center;
}

.search-bar {
    width: 60%;
    padding: 10px;
    font-size: 16px;
}

.search-btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.booking-result {
    margin: 20px auto;
    max-width: 800px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
}

.download-btn {
    margin-top: 10px;
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

    .download-btn:hover {
        background-color: #0056b3;
    }

.no-results {
    color: red;
    margin-top: 20px;
}



.themes-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
}

.theme-card {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .theme-card:hover {
        transform: scale(1.05);
    }

    .theme-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 5px;
    }

.theme-caption {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
}

.red{
    color:red;
}
.ticket-status{
    color: red;
    text-align: center;
    font-size: 22pt;
}