﻿:root {
    --primary-gradient: linear-gradient(135deg, #00c851 0%, #007e33 100%);
    --secondary-gradient: linear-gradient(135deg, #00ff41 0%, #00c851 100%);
    --success-gradient: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
    --warning-gradient: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    --danger-gradient: linear-gradient(135deg, #e53935 0%, #c62828 100%);
    --info-gradient: linear-gradient(135deg, #00e676 0%, #00c853 100%);
    --accent-gradient: linear-gradient(135deg, #76ff03 0%, #64dd17 100%);
    --dark-green-gradient: linear-gradient(135deg, #1b5e20 0%, #388e3c 100%);
    --card-shadow: 0 10px 30px rgba(0,200,81,0.15);
    --hover-shadow: 0 20px 40px rgba(0,200,81,0.25);
    --border-radius: 15px;
    --transition: all 0.3s ease;
}

/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    min-height: 100vh;
}

/* Navigation Styles */
.navbar {
    /*background: var(--primary-gradient) !important;*/
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,200,81,0.2);
    transition: var(--transition);
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-bottom: 3px solid #2e7d32
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    transition: var(--transition);
}

    .navbar-brand:hover {
        transform: scale(1.05);
    }

.navbar-nav .nav-link {
    color: #1b5e20 !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 15px !important;
    border-radius: 20px;
    transition: var(--transition);
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(255,255,255,0.2);
        /*color: white !important;*/
        /*transform: translateY(-2px);*/
    }

.navbar-toggler {
    border: none;
    padding: 4px 8px;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* Button Styles */
.btn.btn-no-caps {
    text-transform: none;
}
.btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .btn:hover::before {
        left: 100%;
    }

.btn-primary-custom {
    background: var(--primary-gradient);
    color: white;
}

    .btn-primary-custom:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 25px rgba(0, 200, 81, 0.4);
        color: white;
    }

.btn-secondary-custom {
    background: var(--secondary-gradient);
    color: #1b5e20;
}

    .btn-secondary-custom:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 25px rgba(0, 255, 65, 0.4);
        color: #1b5e20;
    }

.btn-success-custom {
    background: var(--success-gradient);
    color: white;
}

    .btn-success-custom:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
        color: white;
    }

.btn-warning-custom {
    background: var(--warning-gradient);
    color: white;
}

    .btn-warning-custom:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
        color: white;
    }

.btn-danger-custom {
    background: var(--danger-gradient);
    color: white;
}

    .btn-danger-custom:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 25px rgba(229, 57, 53, 0.4);
        color: white;
    }

.btn-info-custom {
    background: var(--info-gradient);
    color: white;
}

    .btn-info-custom:hover {
        /*transform: translateY(-3px);*/
        box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4);
        color: white;
    }

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    background: transparent;
}

    .btn-outline-light:hover {
        background: rgba(255,255,255,0.2);
        border-color: white;
        color: white;
        /*transform: translateY(-3px);*/
    }

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-social {
    width: 45px;
    height: 45px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    background: var(--primary-gradient);
    color: white;
}

    .btn-social:hover {
        /*transform: translateY(-3px) scale(1.1);*/
        color: white;
    }

/* Hero Section */
.hero-section {
    background: var(--primary-gradient);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
        opacity: 0.3;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease 0.4s both;
}

/* Main Content Sections */
.events-container {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #1b5e20;
    font-weight: 700;
    font-size: 2.5rem;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        /*transform: translateX(-50%);*/
        width: 80px;
        height: 4px;
        background: var(--primary-gradient);
        border-radius: 2px;
    }

/* Event Cards */
.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: none;
    margin-bottom: 30px;
    position: relative;
}

    .event-card:hover {
        /*transform: translateY(-10px);*/
        box-shadow: var(--hover-shadow);
    }

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

    .event-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
    }

.event-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gradient);
    color: #1b5e20;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: #1b5e20;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    z-index: 2;
    min-width: 60px;
}

    .event-date .day {
        display: block;
        font-size: 1.2rem;
        line-height: 1;
    }

    .event-date .month {
        display: block;
        font-size: 0.8rem;
        text-transform: uppercase;
        opacity: 0.8;
    }

    .event-date .year {
        display: block;
        font-size: 0.6rem;
        text-transform: uppercase;
        opacity: 0.6;
    }

.card-body {
    padding: 25px;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 10px;
    line-height: 1.3;
}

.event-description {
    color: #388e3c;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.event-meta {
    /*display: flex;
    justify-content: space-between;
    align-items: center;*/
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #c8e6c9;
}

.event-location {
    color: #66bb6a;
    font-size: 0.9rem;
}

.event-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2e7d32;
}

/* Table Styles */
.table-custom {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

    .table-custom thead {
        background: var(--primary-gradient);
        color: white;
    }

        .table-custom thead th {
            border: none;
            padding: 20px 15px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.9rem;
        }

    .table-custom tbody tr {
        transition: var(--transition);
    }

        .table-custom tbody tr:hover {
            background: #e8f5e8;
            transform: scale(1.01);
        }

    .table-custom tbody td {
        padding: 15px;
        border: none;
        border-bottom: 1px solid #c8e6c9;
        vertical-align: middle;
    }

    .table-custom tbody tr:last-child td {
        border-bottom: none;
    }

.table-striped-custom tbody tr:nth-of-type(odd) {
    background: rgba(0, 200, 81, 0.05);
}

.table-bordered-custom {
    border: 1px solid #c8e6c9;
}

    .table-bordered-custom th,
    .table-bordered-custom td {
        border: 1px solid #c8e6c9;
    }

.table-responsive-custom {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Form Styles */
.form-control {
    border-radius: 12px;
    border: 2px solid #c8e6c9;
    transition: var(--transition);
    font-size: 1rem;
}

    .form-control:focus {
        border-color: #00c851;
        box-shadow: 0 0 0 0.2rem rgba(0, 200, 81, 0.25);
    }

.form-group label {
    font-weight: 600;
    color: #1b5e20;
    margin-bottom: 8px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group-text {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 12px 0 0 12px;
}

/* Card Styles */
.card-custom {
    background: white;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: none;
    transition: var(--transition);
}

    .card-custom:hover {
        /*transform: translateY(-5px);*/
        box-shadow: var(--hover-shadow);
    }

    .card-custom .card-header {
        background: var(--primary-gradient);
        color: white;
        border: none;
        border-radius: 20px 20px 0 0;
        padding: 20px 25px;
        font-weight: 600;
    }

    .card-custom .card-body {
        padding: 25px;
    }

/* Details Page Styles */
.details-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

    .details-hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    }

.details-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    z-index: 2;
}

.details-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.details-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin-bottom: 30px;
}

    .info-card h4 {
        color: #1b5e20;
        margin-bottom: 20px;
        font-weight: 700;
    }

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 0;
}

    .info-item i {
        width: 30px;
        color: #00c851;
        margin-right: 15px;
    }

/* Footer */
.footer {
    background: var(--dark-green-gradient);
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}

    .footer h5 {
        color: white;
        margin-bottom: 15px;
    }

    .footer p {
        color: #a5d6a7;
        line-height: 1.6;
    }

    .footer hr {
        border-color: #388e3c;
        margin: 30px 0 20px;
    }

.social-links {
    text-align: right;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        /*transform: translateY(30px);*/
    }

    to {
        opacity: 1;
        /*transform: translateY(0);*/
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .details-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .social-links {
        text-align: center;
        margin-top: 20px;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto !important;
        width: 200px;
    }

    .table-responsive-custom {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .events-container {
        padding: 60px 0;
    }

    .card-body {
        padding: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .details-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

/* Utility Classes */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-secondary {
    background: var(--secondary-gradient);
}

.bg-gradient-accent {
    background: var(--accent-gradient);
}

.shadow-custom {
    box-shadow: var(--card-shadow);
}

.shadow-hover:hover {
    box-shadow: var(--hover-shadow);
    /*transform: translateY(-5px);*/
}
