/* ============================================
   EUC Sports Austria - Website Styles
   Modern, Minimalist Design
   ============================================ */
  

/* Reset & Base Styles */
.bodywebsite * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bodywebsite {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.bodywebsite a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bodywebsite a:hover {
    color: #c0392b;
}

.bodywebsite img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.bodywebsite-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header & Navigation
   ============================================ */
.bodywebsite-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bodywebsite-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.bodywebsite-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.bodywebsite-nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.bodywebsite-nav-list a {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.bodywebsite-nav-list a:hover,
.bodywebsite-nav-list a.active {
    background-color: #e74c3c;
    color: #fff;
}

/* Mobile Menu Toggle */
.bodywebsite-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bodywebsite-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* ============================================
   Hero Section
   ============================================ */
.bodywebsite-hero {
    /* 1px transparent gif, base64 encoded 
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); */
    background-image: -webkit-cross-fade(
        linear-gradient(135deg, #e74c3c 0%, #c0392b 100%),
        url("/medias/euc-header-bg.jpg"),
        10%
    );
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    color: #fff;
    padding: 6rem 0;
    text-align: center;
}

.bodywebsite-hero-image {
  background-image: url("/medias/euc-header-bg.jpg");
  background-color: #cccccc;
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.bodywebsite-hero-content {
    max-width: 800px;
    margin: 0 auto;
    background-image: ;
}

.bodywebsite-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.bodywebsite-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.bodywebsite-hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.bodywebsite-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Buttons
   ============================================ */
.bodywebsite-btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.bodywebsite-btn-primary {
    background-color: #e74c3c;
    color: #fff !important;
}

.bodywebsite-btn-primary:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.bodywebsite-btn-secondary {
    background-color: transparent;
    border: 2px solid #ffc4be;
    color: #ffc4be !important;
}

.bodywebsite-btn-secondary:hover {
    background-color: #e74c3c;
    color: #fff;
}

.bodywebsite-btn-light {
    background-color: #fff;
    color: #e74c3c;
}

.bodywebsite-btn-light:hover {
    background-color: #f8f9fa;
}

.bodywebsite-btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.bodywebsite-btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   Sections
   ============================================ */
.bodywebsite-section {
    padding: 5rem 0;
}

.bodywebsite-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.bodywebsite-bg-light {
    background-color: #f8f9fa;
}

/* ============================================
   Feature Cards
   ============================================ */
.bodywebsite-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bodywebsite-feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.bodywebsite-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bodywebsite-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bodywebsite-feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.bodywebsite-feature-card p {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   Events
   ============================================ */
.bodywebsite-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.bodywebsite-event-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.bodywebsite-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bodywebsite-event-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.bodywebsite-event-date {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bodywebsite-event-location {
    color: #666;
    margin-bottom: 1rem;
}

.bodywebsite-events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bodywebsite-event-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.bodywebsite-event-item:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bodywebsite-event-date-badge {
    background-color: #e74c3c;
    color: #fff;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.bodywebsite-event-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.bodywebsite-event-month {
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.bodywebsite-event-details {
    flex: 1;
}

.bodywebsite-event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.bodywebsite-event-meta {
    color: #666;
    margin-bottom: 0.5rem;
}

.bodywebsite-event-description {
    color: #555;
    margin: 1rem 0;
    line-height: 1.6;
}

.bodywebsite-event-actions {
    margin-top: 1rem;
}

.bodywebsite-past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.bodywebsite-past-event-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.bodywebsite-past-event-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.bodywebsite-past-event-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   Page Header
   ============================================ */
.bodywebsite-page-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.bodywebsite-page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bodywebsite-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ============================================
   Content Section
   ============================================ */
.bodywebsite-content {
    max-width: 800px;
    margin: 0 auto;
}

.bodywebsite-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.bodywebsite-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.bodywebsite-values-list {
    list-style: none;
}

.bodywebsite-values-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.bodywebsite-values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 1.2rem;
}

.bodywebsite-values-list strong {
    color: #e74c3c;
}

.list_padding_30 {
     padding-left: 30px;
     list-style-position:outside;
}

/* ============================================
   Team Section
   ============================================ */
.bodywebsite-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bodywebsite-team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.bodywebsite-team-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

/* ============================================
   Membership
   ============================================ */
.bodywebsite-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.bodywebsite-benefit-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.bodywebsite-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bodywebsite-benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bodywebsite-benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.bodywebsite-membership-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.3rem;
}

.bodywebsite-membership-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.bodywebsite-membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.bodywebsite-membership-featured {
    border: 3px solid #e74c3c;
}

.bodywebsite-featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e74c3c;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.bodywebsite-membership-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.bodywebsite-price {
    margin: 2rem 0;
}

.bodywebsite-price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.bodywebsite-price-period {
    font-size: 1rem;
    color: #666;
}

.bodywebsite-membership-description {
    color: #555;
    margin-bottom: 2rem;
    min-height: 60px;
}

/* ============================================
   Forms
   ============================================ */
.bodywebsite-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bodywebsite-form-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 0.5rem;
}

.bodywebsite-form-container h3:first-child {
    margin-top: 0;
}

.bodywebsite-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bodywebsite-form-group {
    margin-bottom: 1.5rem;
}

.bodywebsite-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.bodywebsite-form-group input[type="text"],
.bodywebsite-form-group input[type="email"],
.bodywebsite-form-group input[type="tel"],
.bodywebsite-form-group input[type="date"],
.bodywebsite-form-group select,
.bodywebsite-form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.bodywebsite-form-group input:focus,
.bodywebsite-form-group select:focus,
.bodywebsite-form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.bodywebsite-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.bodywebsite-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.bodywebsite-form-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.bodywebsite-form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* ============================================
   News
   ============================================ */
.bodywebsite-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.bodywebsite-news-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.bodywebsite-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bodywebsite-news-date {
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.bodywebsite-news-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: #333;
}

.bodywebsite-news-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bodywebsite-news-link {
    color: #e74c3c;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.bodywebsite-news-link:hover {
    transform: translateX(5px);
}

.bodywebsite-newsletter-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bodywebsite-newsletter-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.bodywebsite-newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.bodywebsite-newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bodywebsite-newsletter-input-group input {
    flex: 1;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
}

.bodywebsite-newsletter-consent {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.bodywebsite-social-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.bodywebsite-social-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.bodywebsite-social-icon {
    width: 60px;
    height: 60px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* ============================================
   Gallery
   ============================================ */
.bodywebsite-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bodywebsite-filter-btn {
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.bodywebsite-filter-btn:hover,
.bodywebsite-filter-active {
    background-color: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.bodywebsite-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.bodywebsite-gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.bodywebsite-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.bodywebsite-gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.bodywebsite-gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bodywebsite-gallery-placeholder span {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.bodywebsite-gallery-info {
    padding: 1.5rem;
}

.bodywebsite-gallery-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.bodywebsite-gallery-info p {
    color: #666;
    font-size: 0.9rem;
}

.bodywebsite-gallery-info-box {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bodywebsite-gallery-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* ============================================
   Contact
   ============================================ */
.bodywebsite-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.bodywebsite-contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.bodywebsite-contact-details {
    margin: 2rem 0;
}

.bodywebsite-contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.bodywebsite-contact-icon {
    font-size: 3rem;
    color: #e74c3c;
}

.bodywebsite-contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.bodywebsite-contact-item p {
    color: #666;
    line-height: 1.6;
}

.bodywebsite-contact-form-wrapper {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bodywebsite-contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.bodywebsite-contact-form {
    /* Form styles already defined above */
}

.bodywebsite-social-links-large h4 {
    font-size: 1.1rem;
    margin: 2rem 0 1rem;
    color: #333;
}

.bodywebsite-social-icons {
    display: flex;
    gap: 1rem;
}

.bodywebsite-social-icon-btn {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bodywebsite-social-icon-btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

.bodywebsite-office-hours {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bodywebsite-hours-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
}

.bodywebsite-hours-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.bodywebsite-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.bodywebsite-faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bodywebsite-faq-question {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.bodywebsite-faq-answer {
    color: #555;
    line-height: 1.6;
}

.bodywebsite-map-placeholder {
    background: #fff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* ============================================
   Footer
   ============================================ */
.bodywebsite-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.bodywebsite-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.bodywebsite-footer-section h3,
.bodywebsite-footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.bodywebsite-footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.bodywebsite-footer-section ul {
    list-style: none;
}

.bodywebsite-footer-section ul li {
    margin-bottom: 0.5rem;
}

.bodywebsite-footer-section a {
    color: #bdc3c7;
}

.bodywebsite-footer-section a:hover {
    color: #fff;
}

.bodywebsite-social-links {
    display: flex;
    gap: 1rem;
}

.bodywebsite-social-links a {
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: 700;
}

.bodywebsite-social-links a:hover {
    background-color: #e74c3c;
    transform: translateY(-3px);
}

.bodywebsite-footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.bodywebsite-footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ============================================
   CTA Section
   ============================================ */
.bodywebsite-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0;
}

.bodywebsite-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bodywebsite-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ============================================
   Utility Classes
   ============================================ */
.bodywebsite-text-center {
    text-align: center;
}

.bodywebsite-small-text {
    font-size: 0.85rem;
    color: #666;
}

.bodywebsite-info {
    background-color: #e3f2fd;
    padding: 1rem;
    border-left: 4px solid #2196F3;
    border-radius: 4px;
    margin: 1rem 0;
    color: #0d47a1;
}

.bodywebsite-error {
    background-color: #ffebee;
    padding: 1rem;
    border-left: 4px solid #f44336;
    border-radius: 4px;
    margin: 1rem 0;
    color: #c62828;
}

.bodywebsite-empty-state {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.bodywebsite-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.bodywebsite-pagination-link {
    padding: 0.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s ease;
}

.bodywebsite-pagination-link:hover,
.bodywebsite-pagination-active {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: #fff;
}

/* ============================================
   Modal
   ============================================ */
.bodywebsite-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bodywebsite-modal-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.bodywebsite-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.bodywebsite-modal-close:hover {
    color: #e74c3c;
}

.bodywebsite-gallery-modal-content {
    max-width: 90vw;
    padding: 0;
    background: none;
}

.bodywebsite-gallery-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.bodywebsite-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.bodywebsite-gallery-nav:hover {
    background-color: rgba(0,0,0,0.8);
}

.bodywebsite-gallery-prev {
    left: 2rem;
}

.bodywebsite-gallery-next {
    right: 2rem;
}

/* ============================================
   Font Awsome and Social Media Symbols
   ============================================ */

.fa-brands {
  padding: 1rem;
  font-size: 1.2rem;
  border-radius: 50%;
  width: 3.4rem !important;
}

.fa:hover {
  opacity: 0.7;
}

.fa-facebook {
  background: #3B5998;
  color: white !important;
}

.fa-instagram {
  background: #125688;
  color: white !important;
}

.fa-youtube {
  background: #bb0000;
  color: white !important;
}

.fa-telegram {
  background: #2199D4;
  color: white !important;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .bodywebsite-mobile-menu-toggle {
        display: flex;
    }
    
    .bodywebsite-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .bodywebsite-nav.active {
        display: block;
    }
    
    .bodywebsite-nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .bodywebsite-nav-list li {
        width: 100%;
    }
    
    .bodywebsite-nav-list a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .bodywebsite-hero-title {
        font-size: 2.5rem;
    }
    
    .bodywebsite-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .bodywebsite-section-title {
        font-size: 2rem;
    }
    
    .bodywebsite-page-header h1 {
        font-size: 2rem;
    }
    
    .bodywebsite-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .bodywebsite-form-row {
        grid-template-columns: 1fr;
    }
    
    .bodywebsite-event-item {
        flex-direction: column;
    }
    
    .bodywebsite-event-date-badge {
        width: 100%;
    }
    
    .bodywebsite-features {
        grid-template-columns: 1fr;
    }
    
    .bodywebsite-gallery-nav {
        padding: 0.75rem 1rem;
        font-size: 1.5rem;
    }
    
    .bodywebsite-gallery-prev {
        left: 0.5rem;
    }
    
    .bodywebsite-gallery-next {
        right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .bodywebsite-hero-title {
        font-size: 2rem;
    }
    
    .bodywebsite-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .bodywebsite-btn {
        width: 100%;
    }
    
    .bodywebsite-newsletter-input-group {
        flex-direction: column;
    }
    
    .bodywebsite-form-container {
        padding: 1.5rem;
    }
}
