/* Global font settings */
* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

/* Venue Header Styles */
.venue-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 0 2rem;
}

.venue-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
    padding: 0 1rem;
}

.venue-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.venue-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.venue-profile {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.venue-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    text-decoration: none;
}

.logo-img {
    max-height: 40px;
    max-width: 100%;
    width: auto;
    vertical-align: middle;
    object-fit: contain;
}



.nav-item {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    color: #000;
    border-bottom-color: #000;
}



.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 Layout */
.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 320px;
    gap: 4rem;
    align-items: start;
}

/* Left Side - Venue Info */
.venue-info-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.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: #000;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

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

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

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

.capacity-section p {
    font-size: 1rem;
    color: #000;
    margin: 0;
}

.overview-section p {
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

.amenities-section {
    margin-top: 1rem;
}

.amenities-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.amenity-item:hover {
    background: #f0f0f0;
}

.amenity-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amenity-name {
    font-weight: 500;
    color: #000;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Contact Section */
.contact-section {
    margin-top: 2rem;
}

.contact-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-weight: 600;
    color: #000;
    font-size: 0.9rem;
}

.contact-value {
    color: #000;
    font-size: 0.9rem;
}

/* Suitable For Section */
.suitable-for-section {
    margin-top: 2rem;
}

.suitable-for-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
}

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

.suitable-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0ede9;
    border-radius: 8px;
    border-left: 4px solid #91796e;
    transition: all 0.3s ease;
}

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

.suitable-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suitable-name {
    font-weight: 500;
    color: #000;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
}

/* Right Side - Calendar & Booking */
.booking-section {
    position: sticky;
    top: 90px;
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: none;
    max-width: 350px;
    width: 350px;
}

/* Minimal Calendar Styles */
.calendar-widget {
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

.calendar-header h3 {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    margin: 0;
    letter-spacing: 0.2px;
}

.calendar-nav {
    background: none;
    border: none;
    font-size: 12px;
    color: #666;
    cursor: pointer;
    padding: 1px 4px;
    border-radius: 3px;
    transition: all 0.15s ease;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-grid {
    width: 100%;
    max-width: 134px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 3px;
}

.weekday {
    text-align: center;
    font-size: 8px;
    font-weight: 500;
    color: #888;
    padding: 1px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 1px;
    min-height: 100px;
}

.calendar-day {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.15s ease;
    color: #000;
    user-select: none;
    border: 1px solid #e8e8e8;
    background: #fafafa;
    font-weight: 500;
}

.calendar-day:hover {
    background: #f5f5f5;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: #91796e;
    color: white;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

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

.calendar-day.other-month:hover {
    background: transparent;
    transform: none;
}

.calendar-day.available {
    background: #fafafa;
    border-color: #e8e8e8;
}

.calendar-day.available:hover {
    background: #f0ede9;
    border-color: #91796e;
}

.calendar-day.today {
    background: #fff3cd;
    border-color: #ffc107;
    font-weight: 500;
}

.calendar-day.today:hover {
    background: #fff3cd;
    border-color: #e0a800;
}

.calendar-day.today.selected {
    background: #91796e;
    border-color: #91796e;
    color: white;
}

.reserve-btn {
    width: 100%;
    padding: 8px;
    background: #91796e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

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

.reserve-btn:disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .calendar-header h3 {
        font-size: 10px;
    }
    
    .calendar-day {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
    
    .booking-section {
        max-width: 350px;
        width: 350px;
    }
    
    .calendar-widget {
        padding: 6px;
    }
    
    .weekday {
        font-size: 7px;
    }
    
    .calendar-grid {
        max-width: 128px;
    }
    
    .calendar-days {
        min-height: 90px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .venue-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-section {
        position: relative;
        top: 0;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .venue-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .venue-detail-main {
        padding: 1rem;
    }
    
    .venue-title {
        font-size: 2rem;
    }
    
    .venue-image-container {
        height: 300px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-section {
        max-width: 100%;
    }
    
    .venue-header {
        padding: 0 1rem;
    }
    
    .venue-nav {
        gap: 1rem;
    }
    
    .nav-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .venue-detail-main {
        padding: 0.5rem;
    }
    
    .venue-title {
        font-size: 1.8rem;
    }
    
    .venue-image-container {
        height: 250px;
    }
    
    .calendar-header h3 {
        font-size: 1rem;
    }
    
    .calendar-day {
        font-size: 0.8rem;
    }
    
    .venue-nav {
        display: none;
    }
    
    .venue-nav-container {
        justify-content: space-between;
        padding: 0 1rem;
    }
}

/* Legacy styles for compatibility */
.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.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;
}

.back-button-container {
    position: fixed;
    top: 80px;
    left: 2rem;
    z-index: 100;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
    background: #f5f5f5;
    border-color: #91796e;
    color: #91796e;
}

.back-icon {
    font-size: 1.1rem;
    font-weight: bold;
}

.loading {
    opacity: 0.6;
    pointer-events: none;
}

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

.reservation-popup-overlay,
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
}

.reservation-popup,
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
} 

/* Flatpickr Date Picker Styles */
.date-picker-container {
    padding: 0;
    width: 100%;
    max-width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.date-picker-container input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-shadow: none;
}

.date-picker-container input:focus {
    outline: none;
    border-color: #91796e;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.date-picker-container input::placeholder {
    color: #999;
}

/* Flatpickr Calendar Customization */
.flatpickr-calendar {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
}

.flatpickr-day.selected {
    background: #91796e !important;
    border-color: #91796e !important;
}

.flatpickr-day:hover {
    background: #f0ede9 !important;
    border-color: #91796e !important;
}

.flatpickr-current-month {
    font-size: 14px;
    font-weight: 600;
}

.flatpickr-monthDropdown-months {
    font-size: 14px;
    font-weight: 600;
}

.flatpickr-weekday {
    font-size: 11px;
    font-weight: 500;
    color: #666;
}

.flatpickr-day {
    font-size: 12px;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .date-picker-container input {
        font-size: 12px;
        padding: 8px 10px;
    }
    
    .flatpickr-calendar {
        font-size: 12px;
    }
    
    .flatpickr-day {
        font-size: 11px;
    }
} 

/* Popup aktifken arka planı blurla */
.popup-blur-active > *:not(.reservation-popup-overlay) {
    filter: blur(6px) grayscale(0.1);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s;
} 

/* Reservation Form Styles */
.reservation-form {
    padding: 1rem;
    border-top: 1px solid #e5e5e5;
}

.booking-header {
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    text-align: center;
}

.booking-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.booking-header p {
    font-size: 0.85rem;
    color: #000;
    margin: 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.form-input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.85rem;
    background: #fff;
    color: #000;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #91796e;
    box-shadow: 0 0 0 3px rgba(145, 121, 110, 0.1);
}

.form-input::placeholder {
    color: #999;
}

select.form-input {
    cursor: pointer;
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.time-range {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.time-input {
    flex: 1;
}

.time-separator {
    font-weight: 600;
    color: #666;
}

/* Character counter styles */
#char-count {
    font-weight: 500;
    transition: color 0.2s ease;
}

/* Responsive form styles */
@media (max-width: 768px) {
    .reservation-form {
        padding: 0.75rem;
    }
    
    .booking-header {
        padding: 0.75rem;
    }
    
    .booking-header h3 {
        font-size: 1rem;
    }
    
    .booking-header p {
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .form-input {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    textarea.form-input {
        min-height: 70px;
    }
    
    .form-group small {
        font-size: 0.7rem;
    }
    
    .time-range {
        flex-direction: column;
        align-items: stretch;
    }
    
    .time-separator {
        display: none;
    }
} 
