/* Reset & base */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Serif JP', serif;
    background: #fff5eb;
    position: relative;
}

/* Create a full page background image */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('https://dinningcafeasa.com/asa_underconstruction/bg.jpg') no-repeat center center / cover;
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}
  
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
  
/* Header with logo and nav */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin-bottom: 20px;
    background: transparent;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}
  
.logo {
    width: 100%;
    text-align: center;
    padding: 10px 0;
}
  
.logo img {
    height: 60px;
    width: auto;
    margin: 0 auto;
}
  
nav {
    width: 100%;
    background: rgba(255, 236, 213, 0.8);
}
  
nav ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
  
nav li {
    position: relative;
}
  
nav a {
    text-decoration: none;
    color: #993300;
    font-weight: bold;
    font-size: 0.95em;
    text-transform: uppercase;
    transition: color 0.3s;
}
  
nav a:hover {
    color: #ff4d00;
}
  
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 236, 213, 0.95);
    padding: 10px;
    box-shadow: 0 4px 15px rgba(153, 51, 0, 0.2);
    border-radius: 6px;
    min-width: 130px;
    z-index: 200;
    border: 2px solid #ff8c00;
    flex-direction: column;
    gap: 10px;
}
  
nav li:hover > ul {
    display: block;
}
  
nav ul ul li {
    margin: 5px 0;
}
  
nav ul ul a {
    font-weight: normal;
    color: #993300;
}
  
nav ul ul a:hover {
    color: #ff4d00;
}
  
/* Hero section */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(153, 51, 0, 0.15);
}
  
.hero-image {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}
  
.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    z-index: 1;
}
  
.hero-container {
    position: relative;
    width: 100%;
    height: 100%; /* or whatever fixed height you want */
    background-image: url('https://dinningcafeasa.com/uploads/logo/asa_banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
  
.hero-text h2 {
    font-family: 'Tangerine', cursive;
    font-size: 3.5em;
    margin-bottom: 10px;
    color: #ffd700;
}
  
.hero-text p {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2em;
    line-height: 1.5;
    color: white; /* or any color that contrasts well */
}
  
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    header {
        margin-bottom: 0;
    }
  
    .logo {
        padding: 10px 0;
    }
  
    nav ul {
        padding: 8px 0;
        gap: 25px;
    }
  
    nav a {
        font-size: 0.95em;
    }
  
    .hero {
        margin: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        position: relative;
    }
  
    .hero-image {
        margin: 0;
        padding: 0;
        width: 100%;
    }
  
    .hero-image img {
        width: auto;
        height: auto;
        border-radius: 0;
        object-fit: cover;
    }
  
    .hero-text {
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        max-width: none;
        background: rgba(102, 34, 0, 0.95);
        padding: 15px;
        border-radius: 0;
        text-align: center;
        margin: 0;
    }
  
    .hero-text h2 {
        font-family: 'Tangerine', cursive;
        font-size: 2.2em;
        margin: 0 0 5px 0;
        color: #ffd700;
    }
  
    .hero-text p {
        font-size: 0.9em;
        line-height: 1.4;
        margin: 0;
        color: white;
        padding: 0 10px;
    }
}
  
@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
  
    nav ul {
        gap: 20px;
        padding: 6px 0;
    }
  
    nav a {
        font-size: 0.9em;
    }
  
    .hero-text {
        padding: 12px;
    }
  
    .hero-text h2 {
        font-size: 2em;
    }
  
    .hero-text p {
        font-size: 0.85em;
        padding: 0 5px;
    }
}
  
/* Content sections */
.content-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
  
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}
  
.menu-item {
    background: rgba(255, 236, 213, 0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(153, 51, 0, 0.15);
    transition: transform 0.3s ease;
    border: 2px solid #ff8c00;
}
  
.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(153, 51, 0, 0.2);
}
  
.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 3px solid #ff8c00;
}
  
.menu-item h3 {
    margin: 15px 0 10px;
    color: #993300;
    font-family: 'Mukta', sans-serif;
}
  
.menu-item p {
    color: #662200;
    margin: 0;
}
  
.price {
    font-weight: bold;
    color: #ff4d00;
    margin-top: 10px;
    font-size: 1.2em;
}
  
/* Info and Maps Section */
.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
  
.image-overlay-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
}
  
.image-overlay-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    border: 3px solid #ff8c00;
}
  
.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(102, 34, 0, 0.6);
    padding: 20px 30px;
    width: auto;
    max-width: 600px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    border: 2px solid rgba(255, 140, 0, 0.8);
    backdrop-filter: blur(3px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
  
.overlay-text h2 {
    font-size: 2.8em;
    margin: 5px 0;
    font-family: 'Tangerine', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    color: #fff;
}
  
.overlay-text p {
    font-size: 1.2em;
    margin: 10px 0;
    font-family: 'Mukta', sans-serif;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
  
.info-box {
    flex: 1 1 300px;
    background: rgba(255, 236, 213, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(153, 51, 0, 0.15);
    border: 2px solid #ff8c00;
    text-align: center;
}
  
.info-image {
    margin: -20px -20px 20px -20px;
    overflow: hidden;
    border-radius: 13px 13px 0 0;
    border-bottom: 2px solid #ff8c00;
}
  
.info-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}
  
.info-image:hover img {
    transform: scale(1.05);
}
  
.info-box h3 {
    color: #993300;
    margin-top: 0;
    font-family: 'Tangerine', cursive;
    font-size: 2.2em;
}
  
.info-box p {
    font-size: 1.1em;
    line-height: 1.5;
    color: #662200;
}
  
.map-box {
    flex: 1 1 300px;
    background: rgba(255, 236, 213, 0.9);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(153, 51, 0, 0.15);
    border: 2px solid #ff8c00;
}
  
iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    border: 3px solid #ff8c00;
}
  
/* Footer */
footer {
    padding: 30px 20px;
    background: rgba(255, 236, 213, 0.9);
    text-align: center;
    margin-top: 40px;
    border-top: 3px solid #ff8c00;
    box-shadow: 0 -4px 15px rgba(153, 51, 0, 0.15);
}
  
.social-links {
    margin: 20px 0;
}
  
.social-links a {
    color: #993300;
    margin: 0 15px;
    font-size: 1.5em;
    transition: color 0.3s ease;
}
  
.social-links a:hover {
    color: #ff4d00;
}
  
/* Responsive design */
@media (max-width: 768px) {
    header {
        padding: 10px 15px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
  
    .logo img {
        height: 40px;
    }
  
    nav ul {
        flex-direction: row;
        gap: 15px;
    }
  
    nav ul ul {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 200px;
    }
  
    .hero {
        margin-bottom: 15px;
    }
  
    .hero-image img {
        width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
  
    .hero-text {
        width: auto;
        padding: 15px;
    }
  
    .hero-text h2 {
        font-size: 2.5em;
        margin-bottom: 8px;
    }
  
    .hero-text p {
        font-size: 1em;
        line-height: 1.4;
    }
  
    .info-section {
        padding: 15px;
    }
  
    .info-box {
        flex: 1 1 100%;
        margin: 10px 0;
    }
  
    .image-overlay-container {
        margin: 15px auto;
    }
  
    .overlay-text {
        width: 95%;
        padding: 15px;
    }
  
    .overlay-text h2 {
        font-size: 2.5em;
    }
  
    .overlay-text p {
        font-size: 1.1em;
    }
  
    /* Ensure images maintain aspect ratio */
    img {
        max-width: 100%;
        height: auto;
    }
}
  
/* Ensure consistent font sizes on smaller screens */
@media (max-width: 480px) {
    .hero-text h2 {
        font-size: 2.2em;
    }
  
    .hero-text p {
        font-size: 0.9em;
    }
  
    nav a {
        font-size: 0.9em;
    }
  
    .info-box h3 {
        font-size: 1.8em;
    }
  
    .info-box p {
        font-size: 1em;
    }
}