/* Root Variables */
:root {
    --primary-color: #28a745; /* Green */
    --secondary-color: #dc3545; /* Red */
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --transition: all 0.3s ease;
    --black-color: #000000;
    --white-color: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black-color);
    background-color: var(--white-color);
}

/* Navigation Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: var(--white-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--black-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--black-color);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/backgrounds/hero2.jfif') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white-color);
}

.hero-section h1 {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-section .btn {
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.hero-section .btn:hover {
    transform: translateY(-3px);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 80px 0;
    }
}

/* Add animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 500px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

    .hero-section .btn {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
}

/* Optional: Add animation for the hero content */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add a subtle moving gradient overlay */
.hero-overlay {
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4)
    );
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Continue styling */
/* Button Styles */
.btn-primary {
    background-color: var(--primary-color); /* Green */
    border-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.btn-primary:hover {
    background-color: var(--secondary-color); /* Red */
    border-color: var(--secondary-color);
}

/* Gallery Section Styles */
.gallery-section {
    background: linear-gradient(to bottom, #f8f9fa, var(--white-color));
    padding: 80px 0;
    min-height: 100vh;
}

/* Section Title */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--black-color);
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color); /* Green */
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* Gallery Filters */
.gallery-filters {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    position: sticky;
    top: 80px;
    z-index: 90;
}

.filter-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    background: var(--white-color);
    color: var(--black-color);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    opacity: 1;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Gallery Grid */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Gallery Card */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Image Container */
.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    padding: 30px 20px;
    color: var(--white-color);
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

/* Gallery Info */
.gallery-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.1s;
}

.gallery-card:hover .gallery-info {
    opacity: 1;
    transform: translateY(0);
}

.gallery-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white-color);
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.meta-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    opacity: 0.8;
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color); /* Green */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .category-badge {
    transform: translateY(0);
    opacity: 1;
}
/* Upload Form Styles */
.upload-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.image-upload-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.image-preview {
    width: 100%;
    height: 300px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    transition: var(--transition);
}

.image-preview:hover {
    border-color: var(--primary-color);
    background-color: #f8f9fa;
}

/* Form Elements */
.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control, 
.form-select {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: var(--transition);
}

.form-control:focus, 
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* SweetAlert2 Custom Styles */
.swal2-popup {
    border-radius: 15px;
    padding: 2rem;
}

.swal2-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.swal2-html-container {
    font-size: 1rem;
    color: #666;
}

.swal2-confirm {
    background-color: var(--primary-color) !important;
    border-radius: 25px !important;
    padding: 0.75rem 2rem !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-info h5 {
        font-size: 1rem;
    }

    .gallery-info p {
        font-size: 0.8rem;
    }

    .filter-btn {
        padding: 6px 15px;
        font-size: 0.9rem;
    }

    .navbar-light .navbar-nav .nav-link {
        color: #333;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .gallery-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
}
/* Logo Styling */
.navbar-logo {
    height: 50px;
    width: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    position: absolute;
    left: 20px; /* Adjust this value as needed */
}
/* Logo hover effect */
.navbar-brand:hover .navbar-logo {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15))
            brightness(1.05);
}

/* Logo when navbar is scrolled */
.navbar.scrolled .navbar-logo {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-logo {
        height: 40px; /* Slightly smaller on mobile */
    }
}

/* Optional: Add a subtle glow effect on hover */
.navbar-brand:hover .navbar-logo {
    animation: logoPulse 2s infinite;
}

@keyframes logoPulse {
    0% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15))
                brightness(1);
    }
    50% {
        filter: drop-shadow(0 8px 16px rgba(0, 123, 255, 0.2))
                brightness(1.1);
    }
    100% {
        filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15))
                brightness(1);
    }
}

/* About Section Styling */
.about-section {
    background-color: var(--white-color); /* Use white color variable for background */
    padding: 60px 0; /* Padding for top and bottom spacing */
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color); /* Use primary color for emphasis */
    margin-bottom: 20px;
    text-transform: uppercase; /* Make the title stand out */
    letter-spacing: 1.5px; /* Space out the title letters */
}

.about-section p {
    font-size: 1.125rem; /* Slightly larger font for readability */
    color: var(--black-color); /* Use black color variable for text */
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-section .lead {
    font-size: 1.25rem;
    color: var(--secondary-color); /* Use secondary color for lead text */
    font-weight: 500;
    margin-bottom: 20px;
}

.about-section img {
    max-width: 100%;
    border-radius: 20px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    transition: transform 0.3s ease; /* Smooth image hover animation */
}

.about-section img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Animations */
[data-aos="fade-right"] {
    animation: fadeInRight 1s ease-in-out;
}

[data-aos="fade-left"] {
    animation: fadeInLeft 1s ease-in-out;
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design */
@media (max-width: 992px) {
    .about-section .row {
        text-align: center; /* Center content on smaller screens */
    }
    .about-section img {
        margin-bottom: 20px;
    }
}


/* Events Section Styling */
.events-section {
    background: linear-gradient(to bottom, var(--white-color), var(--white-color));
    padding: 80px 0;
    min-height: 100vh;
    position: relative;
}

/* Events Container */
.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Event Card Styling */
.event-card {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Event Image Container */
.event-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

/* Event Date Badge */
.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 3px;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #495057;
}

/* Event Status Badge */
.event-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.status-upcoming {
    background: rgba(25, 135, 84, 0.9);
    color: var(--white-color);
}

.status-ongoing {
    background: rgba(13, 110, 253, 0.9);
    color: var(--white-color);
}

.status-past {
    background: rgba(108, 117, 125, 0.9);
    color: var(--white-color);
}

/* Event Content */
.event-content {
    padding: 25px;
}

.event-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--black-color);
    line-height: 1.4;
}

/* Event Details */
.event-details {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.event-details p {
    display: flex;
    align-items: center;
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.event-details i {
    width: 32px;
    height: 32px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Event Description */
.event-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Event Actions */
.event-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.event-actions .btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-actions .btn i {
    font-size: 0.875rem;
}

.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.floating-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--white-color);
    text-decoration: none;
}

.floating-action-btn i {
    margin-right: 8px;
}

.events-empty {
    padding: 3rem;
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.events-empty i {
    color: #dee2e6;
    margin-bottom: 1rem;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .event-image {
        height: 180px;
    }
    
    .floating-action-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
    
    .floating-action-btn span {
        display: none;
    }

    .event-actions {
        flex-direction: column;
    }

    .event-actions .btn {
        width: 100%;
    }
}

/* Floating Add Button */
.floating-add-btn {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-add-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: var(--white-color);
}

.floating-add-btn .icon-wrapper {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Event Cards */
.event-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.event-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-color);
}

.event-date .month {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--black-color);
    margin-top: 3px;
}

.ongoing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.ongoing-badge i {
    margin-right: 8px;
}

.event-content {
    padding: 25px;
    position: relative;
}

.event-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--black-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.event-meta {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.event-meta p {
    display: flex;
    align-items: center;
    margin: 0;
    color: var(--black-color);
    font-size: 0.95rem;
}

.event-meta i {
    width: 25px;
    height: 25px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.event-description {
    color: var(--black-color);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.event-actions {
    display: flex;
    gap: 10px;
}

.event-actions .btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    border-width: 2px;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Placeholder styling */
.placeholder-image {
    height: 100%;
    background: linear-gradient(45deg, var(--white-color), var(--black-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-color);
}

.placeholder-image i {
    font-size: 3rem;
    opacity: 0.5;
}

/* Empty state styling */
.events-empty {
    text-align: center;
    padding: 60px 20px;
}

.events-empty i {
    font-size: 4rem;
    color: var(--black-color);
    margin-bottom: 20px;
}

.events-empty h3 {
    color: var(--black-color);
    margin-bottom: 10px;
}

.events-empty p {
    color: var(--black-color);
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-add-btn span {
        display: none;
    }
    
    .floating-add-btn {
        padding: 15px;
        border-radius: 50%;
    }
    
    .floating-add-btn .icon-wrapper {
        margin-right: 0;
    }
}

/* Animation classes */
.event-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation delay for each card */
.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.4s; }
.event-card:nth-child(5) { animation-delay: 0.5s; }
.event-card:nth-child(6) { animation-delay: 0.6s; }

/* Gallery Link Section Styles */
.gallery-link-section {
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    position: relative;
    overflow: hidden;
}

.gallery-link-card {
    padding: 4rem 2rem;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.gallery-link-card:hover {
    transform: translateY(-5px);
}

.gallery-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white-color);
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-btn {
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-btn i {
    transition: transform 0.3s ease;
}

.gallery-btn:hover i {
    transform: translateX(5px);
}

/* Add some decorative elements */
.gallery-link-section::before,
.gallery-link-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    opacity: 0.1;
    z-index: 0;
}

.gallery-link-section::before {
    top: -150px;
    left: -150px;
}

.gallery-link-section::after {
    bottom: -150px;
    right: -150px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-link-card {
        padding: 3rem 1.5rem;
    }

    .gallery-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .gallery-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animation for the gallery section */
.gallery-link-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional: Add hover effect to the icon */
.gallery-icon {
    transition: all 0.3s ease;
}

.gallery-link-card:hover .gallery-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Admin Link Styles */
.admin-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px !important;
    border-radius: 50px;
    transition: all 0.3s ease !important;
    font-size: 0.9rem;
    color: var(--black-color) !important;
}

.admin-link i {
    font-size: 0.8rem;
    opacity: 0.7;
}

.admin-link:hover {
    background: rgba(0, 0, 0, 0.1);
    color: var(--black-color) !important;
}

/* When navbar is scrolled */
.navbar.scrolled .admin-link {
    color: var(--black-color) !important;
}

.navbar.scrolled .admin-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .admin-link {
        margin-top: 10px;
        justify-content: center;
        background: rgba(0, 0, 0, 0.1);
    }
}

/* Optional: Add a subtle animation on hover */
.admin-link:hover i {
    animation: lockWiggle 0.3s ease;
}

@keyframes lockWiggle {
    0%, 100% { transform: rotate(0); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Add these to your existing styles */
.border-left-primary {
    border-left: 4px solid var(--primary-color) !important;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Your existing styles below */
.status-badge {
    width: 100px;
    text-align: center;
}

@media (max-width: 576px) {
    .event-actions {
        flex-direction: column;
    }

    .event-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Admin-only elements */
.floating-add-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-add-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.floating-add-btn .icon-wrapper {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.floating-add-btn span {
    font-weight: 500;
}

@media (max-width: 768px) {
    .floating-add-btn span {
        display: none;
    }
    
    .floating-add-btn {
        padding: 15px;
        border-radius: 50%;
    }
    
    .floating-add-btn .icon-wrapper {
        margin-right: 0;
    }
}

/* Testimonial Styles */
.testimonial-card {
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    padding: 1.5rem;
}

.platform-badge {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.earnings-proof img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.earnings-proof img:hover {
    opacity: 0.9;
}

.testimony {
    font-style: italic;
    color: var(--black-color);
    margin: 1rem 0;
}

.user-info h4 {
    margin-bottom: 0.5rem;
}
/* Testimonial Management Styles */
.testimony-preview {
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.screenshot-preview {
    max-width: 100px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot-preview:hover {
    transform: scale(1.1);
}

.badge {
    padding: 0.5em 1em;
    font-size: 0.75em;
}

.table td {
    vertical-align: middle;
}

.modal-body img {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.footer {
    background-color: var(--black-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.footer h5 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul li {
    margin-bottom: 0.8rem;
}

.footer ul li a {
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer .text-muted {
    color: var(--white-color) !important;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer i {
    color: var(--primary-color);
    width: 20px;
    margin-right: 10px;
}

.footer ul.list-unstyled li {
    display: flex;
    align-items: center;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    
    .footer h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer ul.list-unstyled li {
        justify-content: center;
    }
    
    .footer .social-links {
        justify-content: center;
        display: flex;
        gap: 10px;
    }
}

/* Animation for footer elements */
.footer [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.footer [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Add these styles to your existing <style> section */
.dashboard-btn {
    position: fixed;
    top: 20px;
    right: 20px; /* Positioned on the right side */
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.dashboard-btn i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .dashboard-btn span {
        display: none;
    }

    .dashboard-btn {
        padding: 10px;
    }
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: var(--white-color);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    color: var(--black-color);
}

.service-card p {
    color: #666;
    margin-top: 10px;
}

/* Animation for the cards when they come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.services-section {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 60px 0; /* Add padding for spacing */
}

.service-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: var(--white-color);
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: relative; /* Position for pseudo-element */
    overflow: hidden; /* Hide overflow for the pseudo-element */
}

.service-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.service-image {
    height: 200px; /* Fixed height for uniformity */
    width: 100%; /* Full width of the card */
    object-fit: cover; /* Ensures the image covers the area */
    border-radius: 10px;
    transition: transform 0.3s; /* Smooth transition for image scaling */
}

.service-card:hover .service-image {
    transform: scale(1.05); /* Scale image slightly on hover */
}

.service-card h3 {
    font-size: 1.5rem; /* Increase font size for titles */
    margin-top: 15px; /* Space above title */
    color: var(--black-color); /* Darker color for better readability */
}

.service-card p {
    color: #666; /* Lighter color for descriptions */
    margin-top: 10px; /* Space above description */
}

/* Animation for the cards when they come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos="fade-up"] {
    opacity: 0; /* Start hidden */
    animation: fadeInUp 0.5s forwards; /* Apply fade-in animation */
}

.testimonials-section {
    background-color: #f8f9fa; /* Light background for contrast */
}

.card {
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth transition for hover effects */
}

.card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.card-title {
    font-size: 1.25rem; /* Increase font size for titles */
}

.card-text {
    font-size: 1rem; /* Standard font size for text */
}

.register-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, border-color 0.3s;
}

.register-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.register-btn i {
    margin-left: 8px;
}
