/* ============================================
   HOOKAH BARS RIGA - MAIN STYLESHEET
   Modern, responsive design
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #dfe6e9;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background: var(--bg-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Search Bar */
.hero-search {
    max-width: 600px;
    margin: 2rem auto;
}

.search-form {
    display: flex;
    gap: 0.5rem;
    background: #fff;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.search-input-wrapper {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.search-input:focus {
    outline: 2px solid var(--primary-color);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.stat-item span {
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #ee5a52;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

.btn-block {
    width: 100%;
}

/* Filters */
.filters-section {
    background: var(--bg-light);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.filters-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Map Section */
.map-section {
    padding: 2rem 0;
    background: var(--bg-light);
}

.map-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.map-section #map {
    box-shadow: var(--shadow);
    height: 500px;
    border-radius: 12px;
    width: 100%;
}

/* Sidebar Layout */
.content-with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem 0;
}

.filters-sidebar {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: var(--transition);
}

.filters-sidebar:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.sidebar-sticky {
    position: sticky;
    top: 90px;
    align-self: flex-start;
}

.sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.3px;
}

.sidebar-title-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-title svg {
    width: 22px;
    height: 22px;
    opacity: 0.95;
}

.filter-count-badge {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    min-width: 30px;
    text-align: center;
}

.filters-form {
    padding: 1.5rem;
}

.main-content {
    min-width: 0;
}

.filters-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-group {
    position: relative;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group label svg {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
    opacity: 0.8;
}

.filter-select,
.filter-group input[type="number"],
.filter-group input[type="text"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-light);
    font-family: var(--font-main);
}

.filter-select:hover,
.filter-group input[type="number"]:hover,
.filter-group input[type="text"]:hover {
    border-color: var(--secondary-color);
    background: #fff;
}

.filter-select:focus,
.filter-group input[type="number"]:focus,
.filter-group input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.filter-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    background: var(--bg-light);
    transition: var(--transition);
    user-select: none;
}

.checkbox-label:hover {
    background: rgba(78, 205, 196, 0.1);
    transform: translateX(3px);
}

.checkbox-label input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--secondary-color);
    border-radius: 6px;
    transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked {
    transform: scale(1.1);
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--text-color);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-inputs input {
    flex: 1;
}

.price-inputs span {
    color: var(--text-light);
    font-weight: 600;
}

.filters-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.filters-actions .btn {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
}

/* Results Header */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.results-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-toggles {
    display: flex;
    gap: 0.5rem;
}

.view-toggle {
    padding: 0.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.view-toggle.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Bars Grid */
.bars-section {
    padding: 2rem 0 4rem;
}

.bars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* List View */
.bars-grid.list-view {
    grid-template-columns: 1fr;
}

.bars-grid.list-view .bar-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 0;
}

.bars-grid.list-view .bar-image {
    height: 100%;
    min-height: 200px;
}

.bars-grid.list-view .bar-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bar-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bar-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bar-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.bar-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    font-weight: 600;
    color: var(--text-color);
    box-shadow: var(--shadow);
}

.bar-content {
    padding: 1.5rem;
}

.bar-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.bar-content h3 a {
    color: var(--text-color);
}

.bar-content h3 a:hover {
    color: var(--primary-color);
}

.bar-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.bar-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.bar-price {
    font-weight: 600;
    color: var(--primary-color);
}

.bar-reviews {
    color: var(--text-light);
}

.bar-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
    background: var(--bg-light);
    border-radius: 12px;
    white-space: nowrap;
}

/* Footer */
.site-footer {
    background: var(--text-color);
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.8);
}

/* Age Popup */
.age-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-popup-content {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 500px;
}

.age-popup-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-popup-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow);
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
       display: flex;
        gap: 1rem;
        flex-direction: row;
        align-content: center;
        justify-content: center;
    }

    .content-with-sidebar {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .sidebar-sticky {
        position: relative;
        top: 0;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .bars-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Map height for mobile */
    .map-section #map {
        height: 265px;
    }

    /* Bar features in grid layout for mobile */
    .bar-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .feature-tag {
        text-align: center;
        font-size: 0.7rem;
        padding: 0.4rem 0.5rem;
    }
}

/* ============================================
   BAR DETAIL PAGE
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--border-color);
}

.breadcrumb li.active span {
    color: var(--text-color);
    font-weight: 500;
}

/* Bar Header Section */
.bar-header {
    background: var(--bg-light);
    padding: 2rem 0;
}

.bar-header-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

.bar-header-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Rating Display */
.bar-rating-large {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.stars-display {
    display: flex;
    gap: 0.25rem;
}

.star {
    display: inline-block;
}

.star.filled {
    color: #ffe66d !important;
}

.star.empty {
    color: #ddd !important;
}

.star.half {
    /* gradient is defined inline */
}

.rating-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.reviews-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Quick Info */
.bar-quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.info-item svg {
    color: var(--text-light);
    flex-shrink: 0;
}

.info-item a {
    color: var(--text-color);
}

.info-item a:hover {
    color: var(--primary-color);
}

/* Action Buttons */
.bar-action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Header Image */
.bar-header-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.bar-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bar Details Grid */
.bar-details {
    padding: 3rem 0;
}

.bar-details-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: start;
}

/* Content Sections */
.content-section {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.bar-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Features List */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--text-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.amenity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    transition: var(--transition);
}

.amenity-item.available {
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary-color);
}

.amenity-item.available svg {
    color: var(--secondary-color);
}

.amenity-item.unavailable {
    opacity: 0.5;
}

.amenity-item svg {
    flex-shrink: 0;
}

/* Gallery */
.bar-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sidebar */
.bar-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-item svg {
    color: var(--text-light);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-item a {
    color: var(--text-color);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.text-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.text-link:hover {
    text-decoration: underline;
}

/* Working Hours */
.working-hours p {
    line-height: 1.8;
    color: var(--text-color);
}

/* Similar Bars */
.similar-bars {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.similar-bars h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .bar-header-content {
        grid-template-columns: 1fr;
    }

    .bar-header-image {
        height: 250px;
    }

    .bar-details-grid {
        grid-template-columns: 1fr;
    }

    .bar-sidebar {
        position: relative;
        top: 0;
    }

    .bar-action-buttons {
        flex-direction: column;
    }

    .bar-action-buttons .btn {
        width: 100%;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .bar-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.page-subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    color: #fff;
}

/* ============================================
   ALL BARS PAGE
   ============================================ */

.all-bars-section {
    padding: 2rem 0;
}

.bars-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bar-card-full {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.bar-card-full:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.bar-card-full .bar-image {
    height: 100%;
    min-height: 250px;
}

.bar-card-full .bar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-card-full .bar-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bar-card-full h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.bar-card-full h2 a {
    color: var(--text-color);
}

.bar-card-full h2 a:hover {
    color: var(--primary-color);
}

.bar-card-full .rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bar-card-full .rating-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
}

.bar-card-full .reviews-count {
    color: var(--text-light);
}

.bar-card-full .address,
.bar-card-full .district,
.bar-card-full .price {
    color: var(--text-color);
    font-size: 0.95rem;
    margin: 0;
}

.bar-card-full .badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.bar-card-full .features {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* No Results Message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.no-results svg {
    margin: 0 auto 1.5rem;
    color: var(--text-light);
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */

.legal-page {
    padding: 3rem 0;
}

.legal-page .container {
    max-width: 900px;
}

.legal-content {
    background: #fff;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: var(--text-color);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.legal-content strong {
    font-weight: 600;
    color: var(--text-color);
}

/* ============================================
   CONTACTS PAGE
   ============================================ */

.contacts-section {
    padding: 3rem 0;
}

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

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.contact-card .contact-method {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card .contact-method:last-child {
    margin-bottom: 0;
}

.contact-card svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-card .contact-method strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-card .contact-method p,
.contact-card .contact-method a {
    margin: 0;
    color: var(--text-color);
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.alert-success {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.alert-error {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

/* Responsive for Legal and Contact Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .bar-card-full {
        grid-template-columns: 1fr;
    }

    .bar-card-full .bar-image {
        min-height: 200px;
        max-height: 250px;
    }
}
