* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: 'Segoe UI', Helvetica, sans-serif; 
}
body { 
    background: #121212; 
    color: #e0e0e0; 
    padding-bottom: 60px; 
}

/* ჰედერი */
header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 30px; 
    background: #1a1a1a; 
    border-bottom: 1px solid #d4af37; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
}
.header-left { width: 15%; }

.logo { 
    font-family: 'Great Vibes', cursive; 
    font-size: 42px; 
    color: #d4af37; 
    text-align: center;
    width: 50%;
}

.header-right { 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    gap: 15px;
    width: 35%;
}

/* 🌐 ენების გადამრთველის სტილი */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-right: 5px;
    border-right: 1px solid #333;
    padding-right: 12px;
}
.lang-btn {
    font-size: 12px;
    font-weight: bold;
    color: #777;
    cursor: pointer;
    transition: color 0.3s;
}
.lang-btn:hover, .lang-btn.active {
    color: #d4af37;
}

.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a { 
    color: #e0e0e0; 
    font-size: 20px; 
    transition: color 0.3s; 
    text-decoration: none; 
}
.social-icons a:hover { color: #d4af37; }

/* ღილაკები */
.nav-menu-btn {
    background: #d4af37; 
    color: #121212; 
    border: 1px solid #d4af37;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-menu-btn:hover {
    background: transparent;
    color: #d4af37; 
}

.nav-book-btn {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-book-btn:hover {
    background: #d4af37;
    color: #121212;
}

/* ვინ ვართ ჩვენ (Hero) */
.hero { 
    text-align: center; 
    padding: 95px 20px; 
    background: linear-gradient(rgba(12, 12, 12, 0.82), rgba(18, 18, 18, 0.95)), url('img/foe.png') center/cover no-repeat; 
}
.hero h1 { 
    font-size: 32px; 
    color: #d4af37; 
    margin-bottom: 20px; 
}
.hero p { 
    max-width: 800px; 
    margin: 0 auto; 
    font-size: 16px; 
    line-height: 1.7; 
    color: #e0e0e0; 
}

/* ოცხელის გალერეა */
.gallery-section { 
    padding: 50px 20px; 
    max-width: 1200px; 
    margin: 0 auto; 
}
.section-title { 
    text-align: center; 
    color: #d4af37; 
    margin-bottom: 40px; 
    font-size: 24px; 
    letter-spacing: 1px; 
}
.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
}
.art-card { 
    background: #1a1a1a; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid #2a2a2a; 
    transition: transform 0.3s; 
}
.art-card:hover { 
    transform: translateY(-5px); 
    border-color: #d4af37; 
}
.art-card img { 
    width: 100%; 
    height: 380px; 
    object-fit: cover; 
}
.art-info { padding: 20px; }
.art-info h3 { 
    color: #d4af37; 
    margin-bottom: 10px; 
    font-size: 18px; 
}
.art-info p { 
    font-size: 14px; 
    color: #b3b3b3; 
    line-height: 1.5; 
    margin-bottom: 15px; 
}
.wiki-btn { 
    display: inline-block; 
    padding: 8px 15px; 
    background: transparent; 
    border: 1px solid #d4af37; 
    color: #d4af37; 
    text-decoration: none; 
    border-radius: 4px; 
    font-size: 12px; 
    transition: 0.3s; 
}
.wiki-btn:hover { 
    background: #d4af37; 
    color: #121212; 
}

/* კაფეს სივრცეები */
.spaces-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1a1a1a;
}
.spaces-subtitle {
    text-align: center;
    color: #888;
    margin-top: -30px;
    margin-bottom: 40px;
    font-size: 15px;
}
.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.space-card {
    background: #181818;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    border: 1px solid #222;
}
.space-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}
.space-img-container {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.space-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.space-card:hover .space-img-container img {
    transform: scale(1.05); 
}
.space-card-info {
    padding: 20px;
    text-align: left;
}
.space-card-info h3 {
    color: #d4af37;
    font-size: 19px;
    margin-bottom: 10px;
}
.space-card-info p {
    font-size: 14px;
    color: #b3b3b3;
    line-height: 1.6;
}

/* ამომხტარი ფანჯრის სტილები (Modal) */
.booking-modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(5px); 
}
.booking-modal-content {
    background-color: #121212;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #d4af37;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    animation: fadeIn 0.4s ease;
}
.close-booking {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.close-booking:hover { color: #d4af37; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ფორმის სტილები */
.form-group { 
    margin-bottom: 18px; 
    text-align: left; 
}
.form-group label { 
    display: block; 
    margin-bottom: 8px; 
    color: #b3b3b3; 
    font-size: 14px; 
}
.form-group input, .form-group select { 
    width: 100%; 
    padding: 11px; 
    background: #1a1a1a; 
    border: 1px solid #333; 
    color: white; 
    border-radius: 6px; 
    font-size: 16px; 
}
.form-group input:focus, .form-group select:focus { 
    border-color: #d4af37; 
    outline: none; 
}

.book-btn { 
    width: 100%; 
    padding: 13px; 
    background: #25d366; 
    color: white; 
    border: none; 
    border-radius: 6px; 
    font-size: 16px; 
    font-weight: bold; 
    cursor: pointer; 
    transition: background 0.3s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    margin-top: 10px; 
}
.book-btn:hover { background: #20ba5a; }

footer { 
    text-align: center; 
    padding: 30px; 
    background: #101010; 
    color: #666; 
    font-size: 14px; 
    border-top: 1px solid #1a1a1a; 
}

/* მობილურისთვის */
@media (max-width: 768px) {
    header { 
        padding: 15px; 
        flex-direction: column; 
        gap: 12px; 
    }
    .logo { width: 100%; font-size: 38px; }
    .header-right { 
        width: 100%; 
        justify-content: center; 
        gap: 10px;
        flex-wrap: wrap;
    }
    .lang-switcher {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        width: 100%;
        justify-content: center;
        margin-bottom: 5px;
    }
    .booking-modal-content { margin: 25% auto; }
}
/* კონტაქტები & გუგლ მაპი */
.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1a1a1a;
}
.contact-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
}
.info-block {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #181818;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #222;
}
.info-block i {
    font-size: 24px;
    color: #d4af37;
    width: 30px;
    text-align: center;
}
.info-block h4 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 4px;
}
.info-block p {
    color: #b3b3b3;
    font-size: 14px;
}
.contact-map {
    flex: 1;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d4af37;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* მობილური ვერსიის დამატება @media-ში */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-map {
        height: 250px;
    }
}