/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/*
 * A better looking default horizontal rule
 */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

:root {
    --bhkc-primary: #00aaaa;
    --bhkc-secondary: #eee;
    --bhkc-nav: silver;
    --bhkc-link: darkgreen;
    --bhkc-heading: maroon;
}

body {
    background-color: var(--bhkc-primary);
    font-size: 1rem;
    line-height: 1.4;
}

.container-fluid {
    background-color: var(--bhkc-secondary);
    margin: 2rem auto;
    max-width: 90%;
}

/* Typography */
h1, h2, h3, h4 {
    color: var(--bhkc-heading);
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.3rem;
}

h3, h4 {
    font-size: 1.2rem;
}

/* Navigation */
.custom-nav {
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    padding: 0.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-nav .nav-item {
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
}

.custom-nav .nav-link {
    color: #2c3e50 !important;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.custom-nav .nav-link:hover {
    color: var(--bhkc-primary) !important;
    background-color: rgba(0, 170, 170, 0.1);
    transform: translateY(-1px);
}

.custom-nav .nav-link:focus,
.custom-nav .nav-link:active,
.custom-nav .nav-link.active {
    color: var(--bhkc-primary) !important;
    background-color: transparent;
}

.custom-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: var(--bhkc-primary);
    transition: width 0.3s ease;
}

.custom-nav .nav-link:hover::after {
    width: 80%;
}

@media (max-width: 768px) {
    .custom-nav {
        padding: 0.3rem 0;
    }
    
    .custom-nav .nav-item {
        padding: 0.3rem 0.5rem;
        margin: 0;
    }

    .custom-nav .nav-link {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Cards */
.card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    background-color: white;
    padding: 1.5rem;
}

.card-title {
    color: var(--bhkc-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Header */
header {
    background-color: white;
    padding: 0.4rem;
}

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Stage area */
.stage {
    margin-bottom: 2rem;
}

/* Instagram section */
.insta {
    background-color: var(--bhkc-secondary);
    padding: 1rem;
    border-radius: 0.5rem;
}

.insta a {
    color: var(--bhkc-link);
}

/* Social Media Buttons */
.btn-outline-primary {
    color: var(--bhkc-link);
    border-color: var(--bhkc-link);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: white;
    background-color: var(--bhkc-link);
    border-color: var(--bhkc-link);
}

/* Footer */
.site-footer {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
    margin-top: 3rem;
}

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.footer-link {
    color: var(--bhkc-primary);
    text-decoration: none;
    font-size: 0.92rem;
    padding: 0.4rem;
    transition: all 0.2s ease;
    font-weight: 500;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bhkc-primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.footer-link:hover::after {
    transform: scaleX(0.5);
}

.footer-link.active::after {
    transform: scaleX(1);
}

.footer-link:hover,
.footer-link.active {
    color: #008f8f;
}

.footer-nav .separator {
    color: #ccc;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .site-footer {
        margin-top: 2.5rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    
    .footer-link {
        padding: 0.4rem;
    }
    
    .footer-link::after {
        bottom: -2px;
    }
    
    .separator {
        display: none;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-fluid {
        margin: 1rem auto;
        max-width: 95%;
    }
    
    h1 {
        font-size: 1.3rem;
    }
    
    .card-img-top {
        height: 160px;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 4rem;
}

.stage {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
    height: 400px;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
}

.hero-overlay h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: white;
    position: relative;
    display: inline-block;
}

.hero-overlay h1::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--bhkc-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.95;
    color: white;
}

@media (max-width: 991px) {
    .hero-image {
        height: 350px;
    }

    .hero-overlay {
        padding: 2.5rem;
    }

    .hero-overlay h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 3rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-overlay {
        padding: 2rem;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Welcome Section */
.welcome-section {
    max-width: 1100px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.welcome-content {
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.welcome-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--bhkc-primary), #008f8f);
}

.welcome-header {
    margin-bottom: 3rem;
    text-align: center;
}

.welcome-header .section-title {
    color: var(--bhkc-primary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.welcome-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--bhkc-primary);
    border-radius: 2px;
}

.welcome-header .section-subtitle {
    color: #666;
    font-size: 1.2rem;
    font-weight: 300;
}

.welcome-box {
    height: 100%;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.welcome-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.welcome-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bhkc-primary), #008f8f);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: white;
    font-size: 2rem;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.welcome-box:hover .welcome-icon {
    transform: rotate(0deg) scale(1.1);
}

.welcome-title {
    color: var(--bhkc-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.welcome-box .lead {
    color: var(--bhkc-primary);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.welcome-box p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.welcome-features {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--bhkc-primary);
    font-weight: 500;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .welcome-content {
        padding: 2rem;
    }

    .welcome-header {
        margin-bottom: 2rem;
    }

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

    .welcome-box {
        padding: 2rem;
    }

    .welcome-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .welcome-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .welcome-section {
        margin-bottom: 3rem;
    }

    .welcome-header .section-title {
        font-size: 1.8rem;
    }

    .welcome-header .section-subtitle {
        font-size: 1.1rem;
    }

    .welcome-box {
        padding: 1.8rem;
        margin-bottom: 1rem;
    }

    .welcome-box:hover {
        transform: none;
    }

    .welcome-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .welcome-title {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .welcome-box .lead {
        font-size: 1.1rem;
    }

    .feature-item {
        font-size: 0.95rem;
    }
}

/* Feature Section */
.feature-section {
    margin-bottom: 5rem;
    padding: 0 1rem;
}

.section-title {
    color: var(--bhkc-primary);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--bhkc-primary);
    border-radius: 2px;
}

.feature-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-img-wrapper {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.feature-card:hover .card-overlay {
    opacity: 1;
}

.card-body {
    padding: 2rem;
    position: relative;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--bhkc-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: white;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon {
    transform: rotateY(180deg);
}

.card-title {
    color: var(--bhkc-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.card-text {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.social-media-strip {
    margin-bottom: 1.5rem;
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--bhkc-primary) 0%, #008f8f 50%, #006666 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(214, 36, 159, 0.25);
    color: white;
}

.insta-badge i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.contact-strip {
    color: #555;
    line-height: 1.6;
}

.contact-strip a {
    color: var(--bhkc-link);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-strip a:hover {
    color: #008f8f;
}

@media (max-width: 991px) {
    .hero-overlay {
        padding: 2rem;
    }

    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .welcome-section {
        margin-bottom: 4rem;
    }

    .welcome-content {
        padding: 2rem;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

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

@media (max-width: 768px) {
    .hero-section {
        margin-bottom: 3rem;
    }

    .hero-image {
        height: 400px;
    }

    .hero-overlay {
        padding: 1.5rem;
    }

    .hero-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .welcome-section {
        margin-bottom: 3rem;
    }

    .welcome-box {
        padding: 0.5rem;
        margin-bottom: 2rem;
    }

    .welcome-title {
        font-size: 1.4rem;
    }

    .welcome-box .lead {
        font-size: 1.1rem;
    }

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

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

    .feature-card:hover {
        transform: none;
    }

    .card-body {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 1.5rem;
    }

    .insta-badge {
        display: block;
        margin: 1rem auto;
        max-width: fit-content;
    }
}

/* Figure Styles */
.figure {
    margin-bottom: 2rem;
}

.figure-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.figure:hover .figure-img {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.figure-caption.h5 {
    color: var(--bhkc-primary);
    font-weight: 500;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .figure-img {
        height: 240px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .figure-img {
        height: 200px;
    }
}

/* Section Title Styles */
.section-title {
    color: var(--bhkc-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

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

/* Gallery Section */
.gallery-section {
    margin: 3rem 0;
}

.gallery-section img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-section img:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-section .col-md-4 img {
    height: 280px;
}

@media (max-width: 768px) {
    .gallery-section img,
    .gallery-section .col-md-4 img {
        height: 220px;
        margin-bottom: 1rem;
    }
}

/* Photo Gallery Styles */
.photo-section {
    margin-bottom: 4rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.photo-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-grid img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

.section-title {
    color: var(--bhkc-primary);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--bhkc-primary), var(--bhkc-secondary));
    border-radius: 2px;
}

/* Helper classes */
.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Social Media & Contact Section */
.social-contact-wrapper {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.text-gradient {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-instagram:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(214, 36, 159, 0.25);
}

.btn-contact {
    background-color: var(--bhkc-primary);
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    background-color: #008f8f;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 170, 170, 0.15);
}

@media (max-width: 768px) {
    .social-contact-wrapper {
        padding: 1rem !important;
    }
    
    .border-end {
        border: none !important;
    }
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 576px) {
    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-instagram,
    .btn-contact {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Contact Links */
.contact-links {
    margin: 2rem auto;
    font-size: 1.1rem;
}

.contact-link {
    color: var(--bhkc-primary);
    text-decoration: none;
    padding: 0.5rem 0.8rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #008f8f;
}

.contact-link i {
    margin-right: 0.4rem;
}

.contact-link.instagram:hover {
    color: #d6249f;
}

.separator {
    color: #ccc;
    margin: 0 0.5rem;
}

@media (max-width: 576px) {
    .contact-links {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        font-size: 1rem;
    }
    
    .separator {
        display: none;
    }
    
    .contact-link {
        display: block;
        padding: 0.5rem;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
    margin-top: 2.5rem;
    margin-bottom: -2rem;
}

.social-media-strip {
    padding: 0.5rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.social-media-strip span {
    color: #555;
}

.insta-badge {
    display: inline-flex;
    align-items: center;
    background: var(--bhkc-primary);
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.insta-badge:hover {
    color: white;
    transform: translateY(-1px);
    background: #008f8f;
}

.insta-badge i {
    margin-right: 0.4rem;
    font-size: 1.1em;
}

.contact-strip {
    padding: 0.5rem 1rem;
    color: #555;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    line-height: 1.5;
}

.contact-strip a {
    color: var(--bhkc-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-strip a:hover {
    color: #008f8f;
}

@media (max-width: 768px) {
    .contact-section {
        margin-top: 1.5rem;
        text-align: center;
    }

    .social-media-strip {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-strip {
        padding: 0.5rem 1.2rem;
    }
}

/* Contact Page Styles */
.contact-info address {
    font-style: normal;
    line-height: 1.6;
}

.contact-links a {
    color: var(--bhkc-primary);
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--bhkc-secondary);
}

.board-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.board-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.board-section .card-img-wrapper {
    height: 280px;
    overflow: hidden;
}

.board-section .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.board-section .card:hover .card-img-top {
    transform: scale(1.05);
}

.board-section .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.board-section .card-text {
    color: var(--bs-gray-700);
}

@media (max-width: 768px) {
    .board-section .card-img-wrapper {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .board-section .card-img-wrapper {
        height: 200px;
    }
}

/* Training Page Styles */
.hover-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.info-cards .card {
    transition: transform 0.3s ease;
    border: none;
    border-left: 4px solid var(--bhkc-primary);
}

.info-cards .card:hover {
    transform: translateX(5px);
}

.info-cards .card-title {
    color: var(--bhkc-primary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.contact-links a {
    color: var(--bhkc-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-links a:hover {
    color: var(--bhkc-secondary);
}

.alert {
    border: none;
    border-radius: 8px;
}

.alert-info {
    background-color: rgba(0, 170, 170, 0.1);
    border-left: 4px solid var(--bhkc-primary);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
}

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

.alert-secondary {
    background-color: rgba(108, 117, 125, 0.1);
    border-left: 4px solid #6c757d;
}

.alert ul {
    list-style: none;
    padding-left: 0;
}

.alert ul li {
    position: relative;
    padding-left: 1.5rem;
}

.alert ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: inherit;
}

/* Termine Page Styles */
.timeline .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-left: 4px solid var(--bhkc-primary);
}

.timeline .card:hover {
    transform: translateX(5px);
}

.timeline .card-body {
    padding: 1.5rem;
}

.event-item {
    padding: 0.5rem 0;
    transition: background-color 0.2s ease;
}

.event-item:hover {
    background-color: rgba(0, 170, 170, 0.05);
    border-radius: 6px;
}

.event-item i {
    width: 20px;
    text-align: center;
}

.list-group-item {
    border: none;
    padding: 1rem 1.25rem;
    transition: background-color 0.2s ease;
}

.list-group-item:hover {
    background-color: rgba(0, 170, 170, 0.05);
}

.list-group-item i {
    width: 20px;
    text-align: center;
}
