/* Section Styles */
.events-section {
    padding: 25px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-eventstitle {
  font-size: 2.3rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  color: #f9a01b;
}

.section-eventstitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 300px;
  height: 5px;
  background-color: #f9a01b;
  border-radius: 2px;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Promotion Cards */
.event-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.event-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.event-card .card-body {
    padding: 25px;
}

.event-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.location-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #444;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.event-card .card-text {
    color: #666;
    margin-bottom: 1rem;
}

.event-card .btn {
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
}

.event-card .btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
  margin-left: 25px;
}

/* Hover + Focus + Active */
.event-card .btn-outline-primary:hover,
.event-card .btn-outline-primary:focus,
.event-card .btn-outline-primary:active {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

.event-card .btn-outline-primary:hover {
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    transform: translateY(-1px);
      color: white;
}


.event-card .btn-primary {
    background: #0d6efd;
    border: 2px solid #0d6efd;
    color: white;
}

/* Modal Styles */
.modal-custom {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    overflow-y: auto;
}

.modal-box {
    background: #fff;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close {
    position: absolute;
    top: 50px;
    right: 1px;
    font-size: 32px;
    cursor: pointer;
    color: #333;
    background: rgba(255,255,255,0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-close:hover {
    background: rgba(255,255,255,1);
}

.modal-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.modal-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.modal-location {
    font-size: 0.9rem;
}

.modal-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 1.5rem;
}

.modal-description {
    color: #666;
    font-size: 16px
}

.event-highlights {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #0d6efd;
    margin-bottom: 1.5rem;
}

.event-highlights p {
    margin-bottom: 0.5rem;
    color: #444;
}

.event-highlights p:last-child {
    margin-bottom: 0;
}

.highlight-price {
    color: #0d6efd;
    font-weight: bold;
}

.modal-buttons .btn {
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.modal-buttons .btn-outline-primary {
    border: 2px solid #0d6efd;
    color: #0d6efd;
}

.modal-buttons .btn-primary {
    background: #0d6efd;
    border: 2px solid #0d6efd;
    color: white;
}

/* Single Column Modal Styles - REMOVED DUPLICATE SECTION */
.modal-single-column {
    max-width: 800px;
    border-radius: 12px;
}

.modal-image-full {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.modal-image-full img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.image-overlay-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    text-transform: uppercase;
}

.modal-content-centered {
    padding-top: 15px;
  padding-bottom: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.modal-header-text {
    text-align: center;
}

.modal-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #222;
    line-height: 1.2;
}

.modal-location-badge {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.modal-body-content {
    text-align: center;
}

.modal-subheading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.event-highlight-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 5px;

    text-align: left;
    border-left: 4px solid #f9a01b;
}

.event-item {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.event-item:last-child {
    margin-bottom: 0;
}

.event-label {
    font-weight: 700;
    color: #222;
    min-width: 140px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.event-text {
    flex: 1;
    color: #444;
    line-height: 1.6;
}

.event-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    word-break: break-all;
}

.event-link:hover {
    text-decoration: underline;
    color: #0a58ca;
}

.modal-action-buttons {
    margin-top: 10px;
}

.action-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline-primary.action-btn {
    border: 2px solid #0d6efd;
    color: #0d6efd;
    background: transparent;
}

.btn-primary.action-btn {
    background: #0d6efd;
    border: 2px solid #0d6efd;
    color: white;
}

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

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .modal-box,
    .modal-single-column {
        margin: 20px;
        max-width: calc(100% - 40px);
      margin-top: 50px;
    }
    
    .modal-content,
    .modal-content-centered {
        padding: 25px;
    }
    
    .modal-title,
    .modal-main-title {
        font-size: 1.8rem;
    }
    
    .modal-subtitle,
    .modal-subheading {
        font-size: 1.2rem;
    }
    
    .modal-image-full img {
        height: 260px;
    }
    
    .event-item {
        flex-direction: column;
    }
    
    .event-label {
        margin-bottom: 5px;
        min-width: auto;
    }
    
    .action-btn {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .modal-content-centered {
        padding: 20px;
    }
    
    .modal-main-title {
        font-size: 1.6rem;
    }
    
    .modal-image-full img {
        height: 260px;
    }
    
    .event-highlight-box {
        padding: 20px 15px;
    }
}
.container-fluid {
  max-width: 1366px;
}

.custom-gap-5 {
  gap: 20px !important;
}

.btn-eventtion-primary {
    background-color: #f9a01b;
    border: 2px solid #f9a01b;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 6px;
    padding: 8px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  margin-right: 20px;
}

/* Hover / Focus / Active */
.btn-eventtion-primary:hover,
.btn-eventtion-primary:focus,
.btn-eventtion-primary:active {
    background-color: #e38f00; /* slightly darker orange */
    border-color: #e38f00;
    color: #ffffff;
    text-decoration: none;
}

/* Optional: subtle lift effect */
.btn-eventtion-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 160, 27, 0.35);
}

/* ============================
   POSTCARD MODAL LAYOUT
============================ */

.modal-postcard {
    max-width: 1100px;
    border-radius: 16px;
    overflow: hidden;
}

.modal-postcard-wrapper {
    display: flex;
    min-height: 100%;
}

/* LEFT IMAGE */
.modal-postcard-image {
    position: relative;
    flex: 1 1 55%;
    background: #000;
}

.modal-postcard-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 480px; /* controls modal height */
}

/* RIGHT CONTENT */
.modal-postcard-content {
    flex: 1 1 45%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ensure button stays strong */
.modal-postcard-content .btn-eventtion-primary {
    padding: 14px 30px;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-back-light {
    background-color: transparent;
    color: #d9534f; /* light red */
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    padding: 8px 12px;
    transition: all 0.25s ease;
      border: 2px solid #0d6efd;
  border-radius: 10px;
  margin-right: 50px;
}

/* Hover effect */
.btn-back-light:hover {
    color: #b52b27;
    text-decoration: underline;
}

/* Remove focus outline */
.btn-back-light:focus {
    outline: none;
    box-shadow: none;
}




.border-0 {
  background-color: #eaeaea;
  
}
