/* Global Styles */
:root {
    --primary-color: #dc3545;
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --accent-color: #ff1a1a;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    padding-top: 76px;
    /* Add padding for fixed navbar */
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.9) !important;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: calc(100vh - 76px);
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-section h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Section Styles */
.section-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

/* About Section */
.about-section {
    background-color: var(--secondary-color);
}

.about-section img {
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
}

.about-content {
    position: relative;
}

.about-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.about-content .lead {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 500;
}

.about-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content .btn {
    padding: 0.8rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .btn-outline-danger {
    border-width: 2px;
}

/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 8rem 0 4rem;
    margin-bottom: 2rem;
}

.gallery-hero h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--secondary-color);
}

.gallery-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.gallery-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    background: rgba(0, 0, 0, 0.8);
    padding: 1.5rem;
    position: relative;
}

.gallery-caption h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 1rem;
}

/* Interests Section */
.interests-section {
    background-color: var(--secondary-color);
}

.interest-category {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 12px;
}

.interest-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.interest-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interest-category h3 i {
    color: var(--primary-color);
}

.interest-category h3 i.fa-star {
    font-size: 1.2rem;
}

.interest-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
    min-height: 60px;
}

.interest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interest-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.interest-list li:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.interest-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--secondary-color);
}

.contact-info,
.contact-form {
    height: 100%;
}

.contact-info ul li {
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    width: 20px;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 0.8rem;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-danger {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background-color: #000000;
    color: var(--text-color);
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: calc(100vh - 60px);
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.2rem;
    }

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

    .gallery-card img {
        height: 300px;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .about-section img {
        margin-bottom: 2rem;
    }

    .about-content {
        padding-left: 0 !important;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-content .lead {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.interest-category,
.gallery-card,
.contact-info,
.contact-form {
    animation: fadeIn 1s ease-out;
}

/* Modal Styles */
.modal-content {
    background-color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.modal-header {
    border-bottom: 1px solid var(--primary-color);
}

.modal-footer {
    border-top: 1px solid var(--primary-color);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Features Section */
.feature-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    transition: transform 0.3s ease;
}

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

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Quick Introduction */
.intro-section {
    background-color: var(--secondary-color);
}

.intro-section img {
    border: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.intro-section img:hover {
    transform: scale(1.02);
}

.intro-section .lead {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn-outline-danger {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-danger:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
}

/* Quick Navigation */
.nav-card {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    height: 100%;
}

.nav-card .card {
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.nav-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
}

.nav-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.nav-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Trust Indicators */
.trust-section {
    background-color: var(--secondary-color);
}

.trust-section h4 {
    color: var(--primary-color);
    margin: 1rem 0;
}

.trust-section p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .feature-card,
    .nav-card .card {
        margin-bottom: 1.5rem;
    }

    .intro-section img {
        margin-bottom: 2rem;
    }

    .trust-section .col-md-4 {
        margin-bottom: 2rem;
    }
}

/* Interests Page Styles */
.interests-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 8rem 0 4rem;
    margin-bottom: 2rem;
}

.interests-hero h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.interests-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.interest-category {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interest-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.interest-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interest-category h3 i {
    font-size: 1.3rem;
}

.interest-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
}

.interest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interest-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.interest-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Session Info Section */
.session-info-section {
    background-color: var(--secondary-color);
}

.session-info-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 3rem;
}

.session-info-card h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-item h4 i {
    font-size: 1.1rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .interests-hero {
        padding: 6rem 0 3rem;
    }

    .interests-hero h1 {
        font-size: 2.5rem;
    }

    .interest-category {
        margin-bottom: 1.5rem;
    }

    .session-info-card {
        padding: 2rem;
    }

    .info-item {
        margin-bottom: 1rem;
    }
}

/* Level Badge */
.level-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Interest Category Updates */
.interest-category {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 12px;
}

.interest-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.2);
}

.interest-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.interest-category h3 i {
    color: var(--primary-color);
}

.interest-category h3 i.fa-star {
    font-size: 1.2rem;
}

.interest-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(220, 53, 69, 0.3);
    min-height: 60px;
}

.interest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.interest-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.interest-list li:hover {
    background-color: rgba(220, 53, 69, 0.1);
}

.interest-list li i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .interest-category {
        margin-bottom: 2rem;
    }

    .interest-description {
        min-height: auto;
    }
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 8rem 0 4rem;
    margin-bottom: 2rem;
}

.contact-hero h1 {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

/* Contact Info Card */
.contact-info-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
    height: 100%;
}

.contact-info-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
}

.contact-list li .contact-link {
    color: #dc3545;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list li .contact-link:hover {
    color: #c82333;
    text-decoration: underline;
}

.contact-list li .fab.fa-twitter {
    color: #dc3545;
}

.contact-list li .fab.fa-twitter+.contact-link {
    color: #dc3545;
}

.contact-list li .fab.fa-twitter+.contact-link:hover {
    color: #c82333;
}

.contact-note {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-note h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-note p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 2rem;
}

.contact-form-card h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 0.8rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23dc3545' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-danger {
    background-color: var(--primary-color);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        margin-bottom: 2rem;
    }

    .contact-list li {
        font-size: 1rem;
    }
}

/* Button Styles */
.btn {
    padding: 0.8rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-danger {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-outline-danger {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.1);
}

.btn-outline-danger:hover {
    background-color: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.2);
}

/* Hero Section Button Styles */
.hero-section .btn {
    margin: 0.5rem;
    min-width: 200px;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.hero-section .btn-group {
    margin-top: 2rem;
}

/* Responsive Button Adjustments */
@media (max-width: 768px) {
    .btn {
        padding: 0.7rem 2rem;
        font-size: 0.95rem;
    }

    .hero-section .btn {
        min-width: 180px;
        margin: 0.3rem;
        padding: 0.8rem 2rem;
    }

    .hero-section .btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 1.5rem;
}

.alert-success i {
    color: #28a745;
}

.alert-danger i {
    color: #dc3545;
}

.alert-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alert p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}