/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px 0;
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reservations-section {
    margin: 30px 0;
}

h1{
    color:#333;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin:auto;
    text-align: center;
}
h1 span{
    display: block;
    margin: 60px auto !important;
}
h1 img{
    display: block;
    margin: 0 auto;
    max-width: 200px;
    height: auto;
}

.address{
    color:#666;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin: 10px 0;
}
.phone{
    color:#666;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-align: center;
    margin: 5px 0;
}

.phone a {
    color: #666;
    text-decoration: none;
}

.phone a:hover {
    color: #333;
    text-decoration: underline;
}

.reservations{
    margin-top: 50px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.footer{
    background-color: black;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    padding: 90px 0;
}
.qrcode{
    grid-column: 2 / 3;
    text-align: center;
}
.qrcode a{
    color: #2ea3f2;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.qrcode a:hover {
    color: #1a8cd8;
}

.qrcode img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.map{
    grid-column: 4 / 5;
    border-radius: 8px;
    border: 0;
}

/* Estilos para las pestañas legales */
.legal-tabs {
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

.legal-tab {
    margin-bottom: 10px;
}

.legal-tab-button {
    background-color: #666;
    border: none;
    color: white;
    cursor: pointer;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding: 8px 15px;
    text-align: left;
    width: 100%;
    transition: background-color 0.3s;
}

.legal-tab-button:hover {
    background-color: #555;
}

.legal-tab-button:focus {
    outline: 2px solid #2ea3f2;
    outline-offset: 2px;
}

.legal-content {
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.legal-content.active {
    display: block;
    max-height: none;
    transition: max-height 0.3s ease-in;
}

.legal-content-inner {
    padding: 20px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
}

.legal-content-inner h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-content-inner p {
    margin-bottom: 10px;
}

.legal-content-inner ul {
    margin: 10px 0;
    padding-left: 20px;
}

.legal-content-inner li {
    margin-bottom: 5px;
}

.legal-content-inner strong {
    font-weight: 600;
    color: #333;
}

.legal-content-inner a {
    color: #2ea3f2;
    text-decoration: none;
}

.legal-content-inner a:hover {
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }
    
    h1 span {
        margin: 30px auto !important;
    }
    
    .footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
    }
    
    .qrcode {
        grid-column: 1;
    }
    
    .map {
        grid-column: 1;
        width: 100%;
        height: 300px;
    }
    
    .legal-content-inner {
        padding: 15px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 0 10px;
    }
    
    h1 {
        font-size: 20px;
    }
    
    .reservations {
        margin-top: 30px;
    }
}
