/* Global container */
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    height: auto;
    border: 1px solid #fff;
}

*{
    box-sizing: border-box;
}

/* Header */
header{
    position:relative;
    padding:20px 0;
    min-height: 180px;
}

/* Header layout */


.header-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-height: 180px;
}



/* Logo centered */
.logo{
    position:static;
    transform:none;
}

.logo img{
    height:92px;
}
.phone-link {
    color: #000000;
    font-size: 25px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: Helvetica;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    font-size: 20px;
    color: #f4b400; /* Gold icon */
}

.phone-link:hover {
    color: #f4b400;
}

/*.MakeReservation{
    
}*/

/* Navigation */


/* Button style */
.nav-button{
    display:inline-block;
    padding:14px 22px;
    background:#e8491d;
    color:white;
    text-decoration:none;
    font-weight:bold;
    border-radius:5px;
    transition:0.3s;
}

/* Hover effect */
.nav-button:hover{
    background:#c73c15;
}

#showcase {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.showcase-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.showcase-text {
    flex: 1;
}

.showcase-text h1 {
    font-size: 45px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
    text-align: center;
}


.showcase-text p {
    font-size: 27px;
    line-height: 1.8;
    color: #ddd;
    text-align: center;
}

.showcase-image {
    flex: 1;
    text-align: center;
}

.food-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}



/* Newsletter */
#newsletter{
    background:#f3c8c8;
    color:white;
    padding:30px 0;
    text-align:center;

}

#newsletter input{
    padding:10px;
    width:250px;
}

.button_1{
    padding:10px 20px;
    border:none;
    background:#e8491d;
    color:white;
    cursor:pointer;
}


/* Section layout */
.restaurant-section{
    display:flex;
    gap:30px;
    padding:20px;
    margin:20px auto;
    max-width:1200px;
}

/* Boxes */
.restaurant-box{
    flex:1;
    min-height:400px;
    position:relative;
    background-size:cover;
    background-position:center;
    border-radius:8px;
    background:#f4f4f4;
}

/* Background images */
.restaurant1{
  
    background-image:url("../img/restaurant1.jpg");
    background-size: cover;        /* makes image fill the area */
    background-position: center;   /* keeps image centered */
    background-repeat: no-repeat;  /* prevents tiling */

}

.restaurant2{
   
    background-image:url("../img/restaurant2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Button styling */
.box-btn{
    position:absolute;
    bottom:20px;
    left:20px;
    padding:12px 25px;
    border:none;
    background:#e8491d;
    color:white;
    font-weight:bold;
    cursor:pointer;
    border-radius:4px;
}

.box-btn:hover{
    background:#c73c15;
}

#Socialmediafeed{
    background: #d0d0d0;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 50px auto;
}



/* Footer */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 25px 40px;
    background-color: #111;
    color: #fff;
}


/* Social icons section */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #111;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #f4b400;
    color: #fff;
    transform: translateY(-3px);
}

/* Copyright section */
.footer-copy p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}





@media (max-width: 768px){
    header{
        min-height: 160px;
    }

    .header-inner{
        min-height: 160px;
    }

    .logo img{
        height: 84px;
    }
  .showcase-content {
        flex-direction: column;
        text-align: center;
    }

    .showcase-text h1 {
        font-size: 38px;
    }

    .showcase-text p {
        font-size: 16px;
    }



    .restaurant-section{
        gap: 20px;
    }

    .restaurant-box{
        min-height:300px;
    }


    .site-footer {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* 📱 MOBILE (phones) */
@media (max-width: 576px){
    

    .header-inner{
        flex-direction:column;
        gap:10px;
        justify-content:center;
        min-height: 160px;
    }


   
    .restaurant-section{
        flex-direction:column;
        padding: 14px;
        gap: 14px;
    }

    .restaurant-box{
        width:100%;
        min-height:220px;
    }

    #newsletter{
        margin: 30px auto;
        padding: 40px 16px;
    }

    #newsletter h1{
        font-size: 24px;
        margin-bottom: 20px;
    }

    #newsletter form{
        flex-direction: column;
        gap: 10px;
    }

    #newsletter input[type="email"],
    .button_1{
        width:100%;
        max-width: 360px;
    }

    .logo{
        position: static;
        transform: none;
    }

    .logo img{
        height:100px;
        padding: 0;
    }

    .nav-button {
        padding: 14px 20px;
    }

}

/* 📲 TABLET */
@media (min-width: 577px) and (max-width: 992px){

    .restaurant-section{
        flex-direction:column;
    }

    .restaurant-box{
        width:100%;
        min-height:300px;
    }

    

}


