/* ========================================
   Location Page Styles
   ======================================== */

.location-section {
    margin-bottom: 50px;
}

.location-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-bg);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* City Section */
.city-section h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 8px;
    font-weight: 900;
}

.city-description {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-primary);
    text-align: justify;
    font-weight: 600;
    padding: 20px 28px;
    background: linear-gradient(135deg, #f8f9ff 0%, #eef1ff 100%);
    border-left: 5px solid var(--accent-color);
    border-radius: 0 12px 12px 0;
    margin: 25px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* City Image */
.city-image {
    margin: 30px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.city-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.city-image img:hover {
    transform: scale(1.02);
}

/* City Video */
.city-video {
    margin: 30px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.city-video iframe,
.city-video video {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* Section Highlight (Event Venues / Hotel Suggestions) */
.section-highlight {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: var(--accent-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 4px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 20px !important;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Event Venues Section */
.event-venues-section {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.event-venues-section .section-highlight {
    display: block;
    text-align: center;
    margin: 0 auto 20px !important;
    width: fit-content;
}

.event-venues-section .section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.event-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    justify-items: center;
}

.event-venues-grid .event-venue-card {
    width: 100%;
    max-width: 360px;
}

.event-venue-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
    text-align: center;
}

.event-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-bg);
}

.event-venue-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(107, 33, 168, 0.1);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--primary-bg);
}

.event-venue-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-bg);
    margin-bottom: 8px;
}

.event-venue-address {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Venue Section */
.venue-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--accent-color);
}

.venue-section h2 {
    color: var(--primary-bg);
    margin-bottom: 12px;
}

.venue-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-style: italic;
}

.venue-address {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.venue-address strong {
    color: var(--primary-bg);
}

.venue-image {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.venue-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.venue-image img:hover {
    transform: scale(1.02);
}

.venue-description {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 20px;
}

.venue-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-outline-purple {
    border: 2px solid var(--primary-bg);
    color: var(--primary-bg);
    background: transparent;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.btn-outline-purple:hover {
    background: var(--primary-bg);
    color: #fff;
}

/* Hotel Section */
.hotel-card {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--card-border);
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.hotel-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hotel-image img:hover {
    transform: scale(1.05);
}

.hotel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-phone {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.hotel-phone i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.hotel-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-bg);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hotel-special {
    color: var(--accent-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(233, 69, 96, 0.08);
    border-radius: 6px;
}

.hotel-address {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.hotel-address i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.hotel-email {
    margin-bottom: 14px;
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.hotel-email i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.hotel-email a {
    color: var(--accent-color);
    text-decoration: none;
    word-break: break-all;
}

.hotel-email a:hover {
    text-decoration: underline;
}

.hotel-card .btn-register.btn-sm {
    margin-top: auto;
    align-self: flex-start;
}

/* Responsive */
@media (max-width: 768px) {
    .venue-section {
        padding: 24px 20px;
    }

    .location-section h2 {
        font-size: 1.6rem;
    }

    .city-section h2 {
        font-size: 1.8rem;
    }

    .venue-links {
        flex-direction: column;
    }

    .venue-links .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .venue-section {
        padding: 30px;
    }
}
