* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui;
}

body {
    background: #f8f4ef;
}

/* HOME */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    color: #7a1f1f;
    font-size: 32px;
}

p {
    margin: 10px 0 20px;
    color: #444;
}

/* BIG BUTTON */
.btn {
    width: 85%;
    max-width: 300px;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    background: #7a1f1f;
    color: white;
}

/* MENU SCREEN */
.menu {
    display: none;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

.menu h2 {
    color: #7a1f1f;
    margin-bottom: 20px;
}

.menu.active {
    display: block;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e6dcd2;
    font-weight: bold;
    color: #7a1f1f;
}

/* BACK BUTTON */
.back {
    margin-top: 20px;
    padding: 12px;
    background: #444;
    color: white;
    border: none;
    border-radius: 10px;
}

* {
    font-family: 'Poppins', sans-serif;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    overflow-x: hidden;
    overflow-y: auto;
    background: #1b1005;
    color: #3b2108;
}

.page {
    display: none;
    width: 100vw;
    height: 100vh;
    padding: 18px;
    text-align: center;
    background: radial-gradient(circle, #fff4c9, #d7a64b, #4b2608);

}

.page.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    height: 90vh;
    border: 3px solid #7a4a16;
    border-radius: 25px;
    background: linear-gradient(#fff2c5, #d9a64a);
    box-shadow: 0 0 30px #ffd66b;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

h1 {
    font-size: 38px;
    color: #4b2208;
}

h2 {
    font-size: 27px;
    margin-bottom: 18px;
    color: #4b2208;
    text-shadow: 0 0 8px #fff0b4;
}

.hero p {
    font-size: 18px;
}

.btn,
.back,
.card,
.offer-buttons button {
    border: none;
    cursor: pointer;
    font-family: Georgia, serif;
}

.btn,
.back {
    padding: 14px 24px;
    border-radius: 30px;
    background: linear-gradient(#fff0b5, #c48624);
    color: #3b2108;
    font-size: 17px;
    font-weight: bold;
    box-shadow: 0 0 18px #ffd66b;
}

.grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    margin-bottom: 20px;
}

.card {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(#fff3c4, #d19a3d);
    color: #3b2108;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 18px #ffd66b;
}

#offers {
    justify-content: flex-start;
    padding-top: 25px;
}

.offer-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.offer-buttons button {
    padding: 14px 8px;
    border-radius: 18px;
    background: linear-gradient(#fff5c8, #c98a26);
    color: #3b2108;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 15px #ffd66b;
}

.offer-buttons span {
    font-size: 16px;
}

.offer-box {
    display: none;
    width: 100%;
    height: 65vh;
    overflow-y: auto;
    padding: 15px;
    border-radius: 22px;
    background: rgba(255, 243, 195, 0.95);
    border: 2px solid #8c561d;
    box-shadow: 0 0 20px #ffd66b;
    text-align: left;
}

.offer-box h3 {
    text-align: center;
    font-size: 24px;
}

.offer-box h4 {
    margin-top: 12px;
    font-size: 18px;
    color: #5a2508;
    border-bottom: 1px solid #c89b45;
}

.offer-box ul {
    padding-left: 18px;
}

.offer-box li {
    margin: 4px 0;
    font-size: 14px;
}

.price-small {
    font-weight: bold;
    color: #5a2508;
}

.program-list {
    width: 100%;
    margin-top: 14px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 246, 207, 0.9);
    border: 2px solid #9b641f;
    box-shadow: 0 0 15px #ffd66b;
}

.program-list h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.program-list p {
    font-size: 13px;
    margin: 3px 0;
}

.back {
    margin-top: 14px;
}

@media (min-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
}



.characters-grid {
    width: 100%;
    height: 70vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    overflow-y: auto;
    padding: 5px;
}

.character-card {
    background: linear-gradient(#fff4c9, #d49a39);
    border: 2px solid #8c561d;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 15px #ffd66b;
    text-align: center;
}

.character-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #6d3f10;
}

.character-card h3 {
    margin-top: 8px;
    font-size: 16px;
}

.character-card p {
    font-size: 18px;
    font-weight: bold;
    color: #5a2508;
}



.menu-type-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.menu-type-buttons button {
    padding: 17px 10px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(#fff4c9, #c98a26);
    color: #3b2108;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 0 18px #ffd66b;
}

.food-box {
    display: none;
    width: 100%;
    height: 65vh;
    overflow-y: auto;
    padding: 15px;
    border-radius: 22px;
    background: rgba(255, 243, 195, 0.96);
    border: 2px solid #8c561d;
    box-shadow: 0 0 20px #ffd66b;
}

.food-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #5a2508;
}

.small-title {
    margin-top: 18px;
    padding-top: 10px;
    border-top: 2px solid #9b641f;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dotted #7a4a16;
    font-size: 15px;
}

.menu-row span {
    text-align: left;
}

.menu-row b {
    min-width: 45px;
    text-align: right;
    color: #5a2508;
}

.services-grid {
    width: 100%;
    height: 72vh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    overflow-y: auto;
    padding: 5px 4px 15px;
}

.service-card img,
.interior-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid #6d3f10;
    background: #fff0bd;
}

@media (min-width: 700px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}




.interior-grid {
    width: 100%;
    height: 72vh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    overflow-y: auto;
    padding: 5px 4px 15px;
}

.interior-card {
    background: linear-gradient(#fff4c9, #d49a39);
    border: 2px solid #8c561d;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 0 18px #ffd66b;
    text-align: center;
}

.interior-card video {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid #6d3f10;
    background: #2b1708;
}

.interior-card h3 {
    margin-top: 10px;
    font-size: 20px;
    color: #3b2108;
}

@media (min-width: 700px) {
    .interior-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.location-box {
    width: 100%;
    height: 75vh;
    padding: 15px;
    border-radius: 22px;
    background: linear-gradient(#fff4c9, #d49a39);
    border: 2px solid #8c561d;
    box-shadow: 0 0 18px #ffd66b;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-box h3 {
    font-size: 20px;
}

.location-box p {
    font-size: 16px;
}

.location-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-btn {
    padding: 12px;
    border-radius: 20px;
    background: linear-gradient(#fff0b5, #c48624);
    text-decoration: none;
    color: #3b2108;
    font-weight: bold;
    box-shadow: 0 0 10px gold;
}

/* ===== PREMIUM DESIGN EFFECTS ===== */

/* ლამაზი გვერდის გადასვლა */
.page {
    opacity: 0;
    transform: scale(0.98);
    transition: 0.35s ease;
    overflow-y: auto;
}

.page.active {
    opacity: 1;
    transform: scale(1);
}

/* სათაურის ოქროს ხაზი */
h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #8b5a16, gold, #8b5a16);
    margin: 8px auto 0;
    border-radius: 10px;
}

/* ყველა ბარათის ეფექტი */
.card,
.service-card,
.character-card,
.interior-card,
.offer-box,
.food-box,
.location-box {
    position: relative;
    transition: 0.3s ease;
}

.card:active,
.service-card:active,
.character-card:active,
.interior-card:active {
    transform: scale(0.97);
}

.card:hover,
.service-card:hover,
.character-card:hover,
.interior-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 28px gold;
}

/* Glow ეფექტი */
.service-card,
.character-card,
.interior-card {
    box-shadow: 0 0 18px #ffd66b;
}

/* TOP badge */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(#fff2a8, #d49a18);
    color: #4b2208;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 0 12px gold;
}

/* მომსახურების ჩამოშლა */
.more-btn {
    margin-top: 10px;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(#fff0b5, #c48624);
    color: #3b2108;
    font-weight: bold;
    box-shadow: 0 0 12px gold;
    font-family: Georgia, serif;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: 0.45s ease;
    text-align: left;
}

.service-card.active .service-details {
    max-height: 600px;
    margin-top: 12px;
}

.service-details h4 {
    color: #5a2508;
    margin: 10px 0 6px;
    border-bottom: 1px solid #b98226;
}

.service-details ul {
    padding-left: 18px;
}

.service-details li {
    margin: 5px 0;
    font-size: 14px;
}

/* ვიდეო */
.service-card video,
.interior-card video {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid #6d3f10;
    background: #2b1708;
}

/* დარეკვის ღილაკი */
.call-btn {
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(#fff2a8, #d49a18);
    color: #3b2108;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 0 22px gold;
}

/* ტელეფონზე უკეთესი დაშორება */
@media (max-width: 500px) {

    .service-card h3,
    .character-card h3,
    .interior-card h3 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card video,
    .interior-card video {
        height: 170px;
    }
}