/* Updated: 2025-01-16 - Venue cards made more compact */
/* App Header Styles */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    height: 70px;
}

.app-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.app-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.app-nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #91796e;
}

.app-profile {
    display: flex;
    align-items: center;
}

.profile-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-placeholder:hover {
    background-color: #d0d0d0;
    transform: scale(1.05);
}

.profile-placeholder i {
    color: white;
    font-size: 18px;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: none;
}

/* Main Content */
.venues-main {
    margin-top: 70px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Filter Section */
.venues-filter {
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e5e5;
    background: white;
    color: #666;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #91796e;
    color: #91796e;
}

.filter-btn.active {
    background: #91796e;
    border-color: #91796e;
    color: white;
}

.filter-info {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Venues Grid */
.venues-grid-section {
    margin-top: 2rem;
}

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

.venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
    max-width: 350px;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.venue-image-container {
    position: relative;
    width: 100%;
    height: 120px;
}

.venue-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    max-width: 80%;
    justify-content: flex-end;
}

.venue-badge .badge {
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    color: white;
    white-space: nowrap;
    background: rgba(145, 121, 110, 0.9);
}

.venue-badge .badge-paid {
    background: rgba(145, 121, 110, 0.9);
}

.venue-badge .badge-youth-free {
    background: rgba(145, 121, 110, 0.9);
}

.venue-info {
    padding: 1rem;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.venue-location {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.venue-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 0.8rem;
}

.venue-capacity,
.venue-area {
    color: #666;
    font-size: 0.8rem;
}

.venue-price-info {
    margin-top: 0.5rem;
}

.venue-price-tag {
    background: #91796e;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #91796e;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tablet Design - Exactly 3 venue cards per row */
/* Tablet detection: 768px to 1366px (covers both portrait and landscape) */
/* 26cm physical width ≈ 980px-1366px depending on device pixel ratio */
@media (min-width: 768px) and (max-width: 1366px) {
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        padding: 1rem;
    }
    
    .venue-card {
        max-width: 100%;
        width: 100%;
    }
    
    .venue-image-container {
        height: 100px;
    }
    
    .venue-name {
        font-size: 0.95rem;
    }
    
    .venue-location {
        font-size: 0.75rem;
    }
    
    .venue-info {
        padding: 0.75rem;
    }
    
    .venue-meta {
        font-size: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-nav {
        padding: 0 1rem;
    }
    
    .app-nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .venues-main {
        padding: 1rem;
        margin-top: 70px;
    }
    
    .page-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .venues-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .filter-info {
        text-align: center;
    }
    
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .venue-image-container {
        width: 100%;
        height: 120px;
    }
    
    .venue-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .app-logo {
        font-size: 1.2rem;
    }
    
    .app-nav-links {
        gap: 0.5rem;
    }
    
    .nav-link {
        font-size: 0.8rem;
        padding: 0.25rem 0;
    }
    
    .profile-image {
        width: 35px;
        height: 35px;
    }
    
    .venues-main {
        padding: 0.5rem;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .venue-info {
        padding: 1rem;
    }
    
    .venue-name {
        font-size: 1.1rem;
    }
}

/* Loading and Empty States */
.loading {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-venues {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-venues h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Animation for venue cards */
.venue-card {
    animation: fadeInUp 0.6s ease-out;
}

.venue-card:nth-child(1) { animation-delay: 0.1s; }
.venue-card:nth-child(2) { animation-delay: 0.2s; }
.venue-card:nth-child(3) { animation-delay: 0.3s; }
.venue-card:nth-child(4) { animation-delay: 0.4s; }
.venue-card:nth-child(5) { animation-delay: 0.5s; }
.venue-card:nth-child(6) { animation-delay: 0.6s; }

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

/* Venue Detail Page Styles */
.venue-detail-main {
    margin-top: 70px;
    padding: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.venue-detail-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

.venue-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Photo Gallery Styles - Enhanced Airbnb Style */
.venue-photo-gallery {
    width: 100%;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 6px;
    position: relative;
    background: #f8f9fa;
}

.venue-photo-gallery.single-photo {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.venue-photo-gallery.two-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
}

.venue-photo-gallery.three-photos {
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.venue-photo-gallery.three-photos .photo-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.venue-photo-gallery.four-photos {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.venue-photo-gallery.four-photos .photo-item:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.venue-photo-gallery.five-photos {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.venue-photo-gallery.five-photos .photo-item:nth-child(5) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.photo-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    background: #e9ecef;
}

.photo-item:hover {
    transform: scale(1.02);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.photo-item.main-photo {
    grid-row: 1 / 3;
    border-radius: 16px 0 0 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.photo-item.main-photo.single {
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.photo-item:not(.main-photo) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.photo-item:nth-child(2) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.photo-item:nth-child(3) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.photo-item:nth-child(4) {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.photo-item:nth-child(5) {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

/* Photo counter removed as requested */

/* Photo Modal Styles */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.photo-modal.active {
    display: flex;
}

.photo-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-modal img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.photo-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

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

.photo-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.photo-modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.photo-modal-nav.prev {
    left: 20px;
}

.photo-modal-nav.next {
    right: 20px;
}

.photo-modal-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .venue-photo-gallery {
        height: 240px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 3px;
        border-radius: 12px;
    }
    
    /* Force 2x2 grid for all photo counts on mobile */
    .venue-photo-gallery.single-photo,
    .venue-photo-gallery.two-photos,
    .venue-photo-gallery.three-photos,
    .venue-photo-gallery.four-photos,
    .venue-photo-gallery.five-photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .photo-item.main-photo {
        grid-row: 1;
        grid-column: 1;
        border-radius: 12px 0 0 0;
    }
    
    .photo-item.main-photo.single {
        grid-row: 1 / 3;
        grid-column: 1 / 3;
        border-radius: 12px;
    }
    
    /* Ensure all photos are visible in 2x2 grid */
    .photo-item:not(.main-photo) {
        display: block;
    }
    
    .photo-item:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
        border-radius: 0 12px 0 0;
    }
    
    .photo-item:nth-child(3) {
        grid-row: 2;
        grid-column: 1;
        border-radius: 0 0 0 12px;
    }
    
    .photo-item:nth-child(4) {
        grid-row: 2;
        grid-column: 2;
        border-radius: 0 0 12px 0;
    }
    
    .photo-item:nth-child(5) {
        display: none; /* Hide 5th photo on mobile */
    }
    
    /* Photo counter removed as requested */
    
    .photo-modal-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .photo-modal-nav.prev {
        left: 10px;
    }
    
    .photo-modal-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .venue-photo-gallery {
        height: 200px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 3px;
        border-radius: 12px;
    }
    
    /* Force 2x2 grid for all photo counts on small phones */
    .venue-photo-gallery.single-photo,
    .venue-photo-gallery.two-photos,
    .venue-photo-gallery.three-photos,
    .venue-photo-gallery.four-photos,
    .venue-photo-gallery.five-photos {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .photo-item.main-photo {
        grid-row: 1;
        grid-column: 1;
        border-radius: 12px 0 0 0;
    }
    
    .photo-item.main-photo.single {
        grid-row: 1 / 3;
        grid-column: 1 / 3;
        border-radius: 12px;
    }
    
    /* Ensure all photos are visible in 2x2 grid */
    .photo-item:not(.main-photo) {
        display: block;
    }
    
    .photo-item:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
        border-radius: 0 12px 0 0;
    }
    
    .photo-item:nth-child(3) {
        grid-row: 2;
        grid-column: 1;
        border-radius: 0 0 0 12px;
    }
    
    .photo-item:nth-child(4) {
        grid-row: 2;
        grid-column: 2;
        border-radius: 0 0 12px 0;
    }
    
    .photo-item:nth-child(5) {
        display: none; /* Hide 5th photo on mobile */
    }
    
    /* Photo counter removed as requested */
}

/* Legacy support for single image */
.venue-detail-main .venue-image-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.venue-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.venue-header-info {
    margin-bottom: 1rem;
}

.venue-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.venue-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.venue-info-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3px;
    margin-bottom: 2rem;
}

.capacity-section h3,
.overview-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.capacity-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.capacity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #555;
}

.overview-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.amenities-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
}

.suitable-for-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.suitable-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.suitable-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f0ede9;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #2d5a2d;
    transition: all 0.3s ease;
}

.suitable-item:hover {
    background: #d4f1d4;
    transform: translateY(-2px);
}

.suitable-item i {
    color: #91796e;
    font-size: 1rem;
}

.booking-sidebar {
    position: sticky;
    top: 90px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    height: fit-content;
    width: 350px;
}

.booking-sidebar h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.calendar-container,
.calendar-widget {
    margin-bottom: 1.5rem;
    max-width: 280px;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 1rem;
    color: #666;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: all 0.2s ease;
    min-width: 30px;
}

.calendar-nav:hover {
    background: #f5f5f5;
    color: #333;
}

.calendar-month {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 7 sütun: Pazartesi-Pazar */
  gap: 4px; /* Hücreler arası boşluk */
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.calendar-grid > div {
  aspect-ratio: 1 / 1; /* Kare hücreler */
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

.calendar-grid > div:hover {
  background: #e0e7ff;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 32px;
}

.calendar-day.header {
    font-weight: 500;
    color: #888;
    cursor: default;
    font-size: 0.75rem;
    padding: 0.25rem 0;
}

.calendar-day.available {
    background: #f0ede9;
    color: #2c5530;
    border: 1px solid #8bc34a;
    cursor: pointer;
    font-weight: 500;
}

.calendar-day.available:hover {
    background: #91796E;
    color: white;
    border-color: #91796E;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #91796e;
    color: white;
    font-weight: 600;
    border: 2px solid #6b5b52;
    transform: scale(1.1);
}

.calendar-day.other-month {
    color: #ccc;
    cursor: default;
    background: transparent;
}

.calendar-day:not(.available):not(.selected):not(.other-month) {
    color: #ddd;
    cursor: not-allowed;
    background: #f9f9f9;
}

.reserve-btn {
    width: 100%;
    background: #91796E;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reserve-btn:hover {
    background: #6d5940;
    transform: translateY(-1px);
}

.reserve-btn.btn-active {
    background: #91796e;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(145, 121, 110, 0.3);
}

.reserve-btn.btn-active:hover {
    background: #7d6961;
}

/* Venue Badge Styles */
.venue-badge-section {
    margin: 1rem 0;
    text-align: center;
}

.venue-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #91796e;
    color: white;
}

.reserve-btn:hover {
    background: #a08073;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .venue-detail-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venue-detail-main {
        padding: 1rem 1.25rem;
    }
    
    .venue-title {
        font-size: 2rem;
    }
    
    .venue-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .suitable-for-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .venue-detail-main {
        padding: 1rem 1rem;
    }
    
    .venue-detail-container {
        gap: 1.25rem;
    }
    
    .venue-title {
        font-size: 1.75rem;
    }
} 
