﻿@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700&display=swap');

.tikos-background {
    min-height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('/Images/Tiko.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 5%;
}

.tikos-overlay {
    width: 100%;
    display: flex;
    justify-content: center;
}

.tikos-content {
    width: 100%;
    max-width: 900px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

    .tikos-content h1 {
        color: white;
        font-size: 56px;
        font-family: 'Cinzel', serif;
        text-transform: uppercase;
        letter-spacing: 4px;
        text-align: center;
        margin: 0 0 35px 0;
        padding: 0;
        background: transparent;
        text-shadow: 0 5px 15px rgba(0,0,0,0.7);
    }

/* SECTION HEADINGS */
.restaurant-info h2 {
    color: #ffd369;
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* TEXT */
.restaurant-info p {
    color: #f5f5f5;
    font-size: 18px;
    line-height: 1.8;
    font-family: 'Segoe UI', sans-serif;
}

.website-link a,
.book-button a {
    display: inline-block;
    padding: 15px 35px;
    background: #ffd369;
    color: black;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s ease;
    font-family: 'Poppins', sans-serif;
    cursor: pointer; /* added */
}

    .website-link a:hover,
    .book-button a:hover {
        transform: scale(1.05);
        background: #fff;
    }

