html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
    background-image: url('images/saqaea.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 0;
    padding-top: 180px;
    position: relative;
    z-index: 1;
}

@supports (-webkit-touch-callout: none) {
    body {
        background-attachment: scroll;
    }
}

/* Pseudo-elemento para manejar el fondo en iOS */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: inherit;
    background-position: inherit;
    background-repeat: inherit;
    background-size: inherit;
    z-index: -1;
}

header {
    background-color: rgba(47, 29, 53, 0.9);
    padding: 20px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    color: #fff;
    margin: 10px 0 0;
    text-align: center;
}

header p {
    color: #fff;
    margin-top: 5px;
    text-align: center;
}

.menu-content {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #fff;
    border-bottom: 2px solid #d0884d;
    padding-bottom: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.item-name {
    font-weight: bold;
}

.item-price {
    color: #fff;
}

.item-description {
    font-style: italic;
    color: #ddd;
    margin-top: 5px;
}

footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #fff;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.7);
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d0884d;
}

@media (max-width: 600px) {
    .container {
        padding-top: 150px;
    }
    
    header {
        padding: 10px;
    }
    
    .menu-content {
        padding: 10px;
    }

    .logo {
        width: 150px;
    }
    
    body, body::before {
        background-attachment: scroll;
    }
}

.google-review {
    margin: 20px 0;
    text-align: center;
}

.google-review a {
    display: inline-block;
    padding: 10px 15px;
    background-color: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.admin-message {
    margin: 20px 0;
    padding: 10px;
    background-color: transparent;
    border: none;
    border-radius: 5px;
}