/* Eco-friendly theme colors */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --text-color: #2c3e50;
    --text-secondary: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 16px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Lao', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

/* Hero Section */
.hero-section {
    padding: 1.5rem 1rem;
    text-align: center;
    background: transparent;
    margin-top: -20px; /* Negative margin to bring content closer to slideshow */
}

.hero-section h1 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin: 0;
    padding: 0.5rem 0;
}

.subtitle {
    color: #34495e;
    font-size: 1.2rem;
    margin: 0.3rem 0 1rem;
}

/* Tabs Container */
.tabs-container {
    position: relative;
    margin: 0.5rem 1rem 1.5rem;
    background: #ffffff;
    border-radius: 15px;
    padding: 0.3rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-wrapper {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    gap: 0.3rem;
    position: relative;
    z-index: 1;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.tab-button {
    flex: 1;
    min-width: 80px;
    padding: 0.8rem 0.5rem;
    border: none;
    background: transparent;
    color: #666;
    font-family: 'Noto Sans Lao', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    white-space: nowrap;
}

.tab-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.tab-text {
    font-size: 0.85rem;
}

.tab-button.active {
    color: #2c3e50;
    font-weight: 500;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 3px;
    background: #3498db;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    gap: 2.5rem;
    padding: 0.5rem 1rem 2rem;
    margin-top: -10px;
    grid-template-columns: 1fr;
}

/* Enhanced Card Styles */
.info-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.card-inner {
    padding: 2.5rem;
}

.card-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: bounceIcon 3s infinite ease-in-out;
}

/* Card Content Styles */
.card-content {
    margin-top: 1.5rem;
}

.location-info {
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.venue {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.address, .city {
    color: var(--text-secondary);
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.address:before, .city:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Add new animations */
@keyframes bounceIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Enhanced animations for cards */
.animate__fadeInUp {
    animation-duration: 0.8s !important;
}

/* Staggered animation delays for cards */
.cards-grid .info-card:nth-child(1) { animation-delay: 0.1s; }
.cards-grid .info-card:nth-child(2) { animation-delay: 0.2s; }
.cards-grid .info-card:nth-child(3) { animation-delay: 0.3s; }
.cards-grid .info-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive improvements */
@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-inner {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .cards-grid {
        gap: 1.5rem;
        padding: 1rem;
        margin-bottom: 100px;
    }
    
    .card-inner {
        padding: 1.8rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .register-section {
        bottom: 1.5rem;
    }
}

/* Register Button */
.register-section {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    width: calc(100% - 2rem);
    max-width: 300px;
    padding: 0 1rem;
    filter: drop-shadow(0 4px 15px rgba(46, 204, 113, 0.3));
}

.register-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 10001;
}

.register-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

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

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

.button-arrow {
    transition: transform 0.3s ease;
}

.register-button:hover .button-arrow {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .card-inner {
        padding: 2rem;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .register-section {
        bottom: 1rem;
        padding: 0 1rem;
    }
    
    .register-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Location Card Specific Styles */
.map-container {
    margin: 1.5rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
    transform: translateY(-2px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

.location-info {
    text-align: center;
    margin-bottom: 1rem;
}

.venue {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.address, .city {
    color: var(--text-secondary);
    margin: 0.3rem 0;
}

.directions-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 12px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.directions-button:hover {
    background: rgba(46, 204, 113, 0.2);
    transform: translateX(5px);
}

.directions-button .button-icon {
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .map-container {
        margin: 1rem 0;
    }
    
    .map-container iframe {
        height: 180px;
    }
    
    .venue {
        font-size: 1.1rem;
    }
}

/* Chat Interface Styles */
.chat-interface {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.chat-interface.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    position: relative;
}

.bot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.header-info {
    flex: 1;
}

.header-info h2 {
    font-size: 1.1rem;
    margin: 0;
}

.header-status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.close-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.close-button:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #e5e5e5;
}

.message {
    max-width: 80%;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    position: relative;
    animation: messageSlide 0.3s ease;
}

.bot-message {
    background: white;
    margin-right: auto;
    border-top-left-radius: 0.2rem;
}

.user-message {
    background: #dcf8c6;
    margin-left: auto;
    border-top-right-radius: 0.2rem;
}

.chat-input-container {
    padding: 1rem;
    background: #f0f0f0;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

#userInput {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 1.5rem;
    background: white;
    font-family: inherit;
    font-size: 1rem;
}

#sendButton {
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#sendButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#sendButton svg {
    width: 20px;
    height: 20px;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Specific Styles */
@media (max-width: 768px) {
    .chat-interface {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .chat-container {
        border-radius: 0;
    }

    .chat-header {
        padding: 1rem;
    }

    .message {
        max-width: 85%;
    }

    .chat-input-container {
        padding: 0.8rem;
    }

    /* Hide register button when chat is open */
    .chat-interface.active ~ .register-section {
        display: none;
    }
}

/* Desktop Specific Styles */
@media (min-width: 769px) {
    .chat-interface {
        max-width: 400px;
        height: 600px;
        right: 2rem;
        left: auto;
        bottom: 2rem;
        top: auto;
        border-radius: 1rem;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    }

    .chat-container {
        border-radius: 1rem;
        overflow: hidden;
    }
}

/* Organizer Card Styles */
.organizer-info {
    padding: 0.5rem;
}

.organizer-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
}

.organizer-divider::before,
.organizer-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: rgba(76, 175, 80, 0.2);
}

.organizer-divider::before {
    left: 0;
}

.organizer-divider::after {
    right: 0;
}

.organizer-info .info-item {
    background: rgba(76, 175, 80, 0.04);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.organizer-info .info-item:hover {
    background: rgba(76, 175, 80, 0.08);
    transform: translateX(5px);
}

/* Update animation delays for other cards */
.cards-grid .info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.cards-grid .info-card:nth-child(3) {
    animation-delay: 0.4s;
}

.cards-grid .info-card:nth-child(4) {
    animation-delay: 0.6s;
}

/* Add smooth hover effect for info items */
.info-item {
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(46, 204, 113, 0.05);
    transform: translateX(5px);
}

/* Enhanced card content animation */
.card-content {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Improved mobile responsiveness */
@media (max-width: 768px) {
    .register-section {
        bottom: 1rem;
    }
    
    .chat-interface.active ~ .register-section {
        display: none;
    }
}

/* Add new success popup styles */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(46, 204, 113, 0.2);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10002;
}

.success-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    animation: successBounce 1s ease;
}

.success-message {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.success-submessage {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

@keyframes successBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

/* Confirmation Popup */
/* .confirmation-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(46, 204, 113, 0.2);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10002;
    max-width: 90%;
    width: 400px;
}

.confirmation-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
} */
.confirmation-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(46, 204, 113, 0.2);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10002;
    max-width: 90%;
    width: 400px;
     max-height: 90vh;
     /* Limit height to 80% of the viewport */
     overflow-y: auto;
     /* Enable vertical scrolling */
}

.confirmation-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: popupIconBounce 1s ease;
}

.popup-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.popup-message {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.popup-message p {
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: rgba(46, 204, 113, 0.05);
    border-radius: 8px;
}

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

.popup-button {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.popup-button.confirm {
    background: var(--primary-color);
    color: white;
}

.popup-button.cancel {
    background: #f1f1f1;
    color: var(--text-secondary);
}

.popup-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes popupIconBounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Make sure all inputs and buttons inherit the font */
input, 
button, 
textarea {
    font-family: 'Noto Sans Lao', sans-serif;
}

/* Add these new styles for option buttons */
.option-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.option-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.option-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    background: #f8f9fa;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 280px; /* Increased height for mobile */
}

.slide {
    flex: 0 0 100%;
    position: relative;
    padding: 15px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
}

.slide-content h3 {
    margin: 0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.slideshow-container:hover .slideshow-nav {
    opacity: 1;
}

.prev { left: 1rem; }
.next { right: 1rem; }

.slideshow-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dot.active {
    background: #ffffff;
    transform: scale(1.2);
}

/* Responsive Design */
@media (min-width: 768px) {
    .slides-wrapper {
        height: 400px;
    }

    .slide {
        padding: 20px;
    }

    .hero-section {
        padding: 2rem;
        margin-top: -30px;
    }

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

    .subtitle {
        font-size: 1.5rem;
    }

    .date-info {
        font-size: 1.3rem;
    }

    .countdown-container {
        gap: 1.2rem;
    }

    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }

    .countdown-number {
        font-size: 2.2rem;
    }

    .countdown-label {
        font-size: 1rem;
    }

    .slideshow-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Countdown Styling */
.event-date {
    margin: 0.5rem 0;
}

.date-info {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    padding: 0.5rem 1.5rem;
    background: #ffffff;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin: 1rem 0;
    padding: 0 1rem;
}

.countdown-item {
    background: #ffffff;
    padding: 0.8rem 0.5rem;
    border-radius: 15px;
    min-width: 70px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-2px);
}

.countdown-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    color: #7f8c8d;
}

/* Responsive Tabs */
@media (min-width: 768px) {
    .tabs-container {
        margin: 1rem 2rem 2rem;
        padding: 0.5rem;
    }

    .tab-button {
        min-width: 120px;
        padding: 1rem;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .tab-text {
        font-size: 1rem;
    }
}

/* Venue Section */
.venue-section {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.venue-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.venue-header {
    padding: 1.5rem;
    text-align: center;
    background: linear-gradient(to right, rgba(46, 204, 113, 0.05), rgba(46, 204, 113, 0.1));
}

.venue-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.15);
}

.venue-title {
    font-size: 1.5rem;
    color: var(--text-color);
    margin: 0.5rem 0;
}

.venue-subtitle {
    color: var(--text-secondary);
}

.venue-details {
    padding: 1.5rem;
    display: grid;
    gap: 1rem;
}

.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.detail-card:hover {
    transform: translateX(5px);
    background: rgba(46, 204, 113, 0.05);
}

.detail-icon {
    font-size: 1.5rem;
    background: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.1);
}

.detail-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.detail-content p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(46, 204, 113, 0.1);
    transform: translateX(5px);
}

.venue-map {
    padding: 1.5rem;
}

.map-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.map-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .venue-section {
        padding: 3rem 2rem;
    }

    .venue-details {
        grid-template-columns: repeat(3, 1fr);
    }

    .detail-card {
        flex-direction: column;
        text-align: center;
    }

    .detail-icon {
        margin: 0 auto;
    }

    .contact-links {
        align-items: center;
    }
}