﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f8f9fa;
    --accent-color: #6366f1;
    --success-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 10px 25px -5px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)
}

body {
    font-family: 'Inter',sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    min-height: 100vh;
    padding: 2rem 1rem
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.header {
    background: linear-gradient(135deg,var(--primary-color) 0%,#374151 100%);
    color: #fff;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden
}

    .header::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat
    }

.header-content {
    position: relative;
    z-index: 1
}

.title-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem
}

.main-title {
    font-family: 'Playfair Display',serif;
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg,#fff 0%,#e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.verified-badge {
    background: var(--success-color);
    color: #fff;
    padding: .5rem 1rem;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: .5rem;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .8
    }
}

.location-info {
    font-size: 1.125rem;
    opacity: .9;
    margin-top: .5rem
}

.content {
    padding: 3rem 2rem
}

.section {
    margin-bottom: 3rem
}

.section-title {
    font-family: 'Playfair Display',serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .5rem
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(135deg,var(--accent-color) 0%,#8b5cf6 100%);
        border-radius: 2px
    }

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: justify
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 1.5rem
}

.info-card {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: .3s
}

    .info-card:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-hover)
    }

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .5rem
}

.info-value {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary)
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.tag {
    background: linear-gradient(135deg,var(--accent-color) 0%,#8b5cf6 100%);
    color: #fff;
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .875rem;
    font-weight: 500
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(160px,1fr));
    gap: 1rem
}

.schedule-day {
    background: #fff;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: .3s
}

    .schedule-day:hover {
        border-color: var(--accent-color);
        transform: translateY(-2px)
    }

.day-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: .5rem;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.day-hours {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--accent-color)
}

.closed {
    color: var(--text-secondary);
    font-style: italic
}

.contact-placeholder {
    background: linear-gradient(135deg,#f3f4f6 0%,#e5e7eb 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    border: 2px dashed var(--border-color)
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: .5
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.125rem
}
