*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    background-color: rgb(32, 33, 111);
    color: rgb(233, 97, 97);
    padding: 0px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.header h1 {
    margin: 0;
}
.header .tagline {
    font-size: 1.2em;
    color: #fffffc;
    
}
.nav-list {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    margin-left: 60px;
}
.logo h1{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}
 .logo .tagline {
    font-size: 0.9em;
    color: #e4ef80;
    opacity: 0.8;
}
.nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
}
.nav-list li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease;
}
.nav-list li a:hover {
    background-color: rgb(0, 0, 0, 0.5) ;
    color: #00ff51;
}

.hero {
    height: 100vh;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url(https://assets.hrewards.com/assets/jpg.xxlarge_SHR_Hamburg_restaurant_Stadthaus_8_0d111ed2f6.jpg?optimize=high&quality=85&width=1200) 
                center/cover;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column; /* stack text + buttons vertically */
    align-items: center;
    gap: 1rem; /* spacing between elements */
}

.hero-content h2 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-button {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}
.btn.btn-primary {
    background-color: rgb(29, 34, 128);
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn.btn-primary:hover {
    background-color: rgba(57, 201, 90, 0.673);
}
.btn.btn-secondary {
    font-weight: bold;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border: 5px solid rgb(255, 255, 255);
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.btn.btn-secondary:hover {
    background-color: rgba(94, 221, 119, 0.682);
}



.menu {
    position: relative;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    overflow: hidden;

    background: url('https://resizer.otstatic.com/v2/photos/large/2/73573948.jpg') 
                center/cover no-repeat;
    filter: brightness(0.9); 
}

.menu h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #1d12f6;
    font-weight: bold;
}
.menu #p1 {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #1ffc06;
    font-weight: bold;
}

.menu p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.menu-category {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
    text-align: left;
}

.menu-category h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #f5d76e;
    text-align: center;
}


.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info {
    max-width: 75%;
}

.menu-item-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.menu-item-info p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin: 0;
}

.price {
    font-weight: bold;
    color: #ffcc70;
    margin-left: 15px;
    white-space: nowrap;
}


.about {
    padding: 80px 20px;
    background: #f9f9f9; 
    color: #333;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1 1 500px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1d12f6; 
    text-align: left;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #444;
}

.about-image {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}


.contact {
    padding: 80px 20px;
     background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url("https://img.freepik.com/free-photo/italian-food-background-with-spices-pasta-herbs-dark-table_1220-6351.jpg")
                center/cover no-repeat;
    color: #fefefe;
}

.contact .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1d12f6;
    font-weight: bold;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.contact-info {
    flex: 1 1 300px;
    background: #6e6868;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1d12f6;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.contact-form {
    flex: 1 1 400px;
    background: #392e2e;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1d12f6;
}

.contact-form label {
    font-weight: bold;
    display: block;
    margin: 10px 0 5px;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    display: block;
    margin: 20px auto 0; 
    background: #e48c07;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #c800c1;
}

.footer {
    background: #1a1a1a;  
    color: #f0f0f0;
    padding: 50px 20px 20px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffcc70;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1ffc06; 
}

.footer-section p {
    margin: 5px 0;
    line-height: 1.5;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #f0f0f0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fc0606; 
}


.social-links {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links:hover {
    transform: scale(1.1);
}


.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}




