/* Importar fontes */
@import url('font/stylesheet.css');

/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #E2DBB7;
    color: #000000;
    font-family: 'Bodoni 72', serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Classes para controle de visibilidade responsiva */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Garantir que apenas um logo seja visível por vez */
.logo.desktop-only {
    display: block;
}

.logo.mobile-only {
    display: none;
}

/* Ilustrações dos cantos */
.corner-illustrations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.corner-top-left,
.corner-top-right,
.corner-bottom-left,
.corner-bottom-right {
    position: absolute;
    max-width: 25%;
    height: auto;
}

.corner-top-left {
    top: 0;
    left: 0;
}

.corner-top-right {
    top: 0;
    right: 0;
}

.corner-bottom-left {
    bottom: 0;
    left: 0;
}

.corner-bottom-right {
    bottom: 0;
    right: 0;
}

/* Conteúdo principal */
.main-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
}

.logo {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Menu de navegação */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.menu-link {
    font-family: 'Bodoni 72', serif;
    font-size: 2.25rem; /* 36px */
    line-height: 3.375rem; /* 54px */
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.menu-link:hover {
    opacity: 0.7;
}

/* Divisor */
.divider {
    width: 60%;
    height: 1px;
    border-top: 2px dashed #000000;
    margin: 2rem 0;
}

/* Seção de reservas */
.reservas {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 600px;
}

.reservas-title {
    font-family: 'Realtime Text Rounded', sans-serif;
    font-size: 1.375rem; /* 22px */
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.reservas-list {
    list-style: none;
    text-align: left;
}

.reservas-list li {
    font-family: 'Bodoni 72', serif;
    font-size: 1.1875rem; /* 19px */
    line-height: 1.5;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.reservas-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}

/* Informações de contato */
.contact {
    text-align: center;
    max-width: 600px;
}

.address {
    font-family: 'Bodoni 72', serif;
    font-size: 1.625rem; /* 26px */
    margin-bottom: 0.5rem;
}

.contact-info {
    font-family: 'Bodoni 72', serif;
    font-size: 1.125rem; /* 18px */
}

/* Responsividade - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-content {
        padding: 1.5rem;
    }
    
    .menu-link {
        font-size: 2rem; /* Reduzido para tablet */
        line-height: 3rem;
    }
    
    .reservas-title {
        font-size: 1.25rem;
    }
    
    .reservas-list li {
        font-size: 1.125rem;
    }
    
    .address {
        font-size: 1.5rem;
    }
    
    .contact-info {
        font-size: 1rem;
    }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    /* Garantir que apenas o logo mobile seja visível */
    .logo.desktop-only {
        display: none;
    }
    
    .logo.mobile-only {
        display: block;
    }
    
    .main-content {
        padding: 1rem;
        min-height: 100vh;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .menu {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .menu-link {
        font-size: 1.5rem; /* Reduzido para mobile */
        line-height: 2.25rem;
    }
    
    .divider {
        width: 80%;
        margin: 1.5rem 0;
    }
    
    .reservas {
        margin-bottom: 1.5rem;
    }
    
    .reservas-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .reservas-list li {
        font-size: 1rem;
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
    }
    
    .address {
        font-size: 1.25rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
    
    /* Ajustar ilustrações para mobile */
    .corner-illustrations img {
        max-width: 30%;
    }
}

/* Responsividade - Mobile pequeno */
@media (max-width: 480px) {
    .main-content {
        padding: 0.8rem;
    }
    
    .menu-link {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }
    
    .reservas-title {
        font-size: 1rem;
    }
    
    .reservas-list li {
        font-size: 0.9rem;
    }
    
    .address {
        font-size: 1.125rem;
    }
    
    .contact-info {
        font-size: 0.8rem;
    }
}

/* Ajustes para telas muito grandes */
@media (min-width: 1744px) {
    .main-content {
        max-width: 1400px;
    }
    
    .menu-link {
        font-size: 2.5rem;
        line-height: 3.75rem;
    }
    
    .reservas-title {
        font-size: 1.5rem;
    }
    
    .reservas-list li {
        font-size: 1.25rem;
    }
    
    .address {
        font-size: 1.75rem;
    }
    
    .contact-info {
        font-size: 1.25rem;
    }
}
