/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ✅ FIXED FONT (correct format + no space in filename) */
@font-face {
    font-family: 'havergie';
    src: url('./font/Havergie-Script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Body Styling */
body {
    background-color: #f4f4f4;
    font-size: 20px;
    font-family: 'havergie', sans-serif;
}

/* Logo Container */
.logo {
    display: flex;
    align-items: center;
    padding: 10px 20px;
}

/* Logo Image */
.logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 10px;
}

/* Header Styling */
header {
    background-color: #f16413;
    color: #f4f4f4;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 1px 10px;
    font-weight: bold; /* ✅ FIXED */
}

header .logo h1 {
    position: relative;
    font-size: 50px;
    margin: 0;
    font-family: 'havergie';
}

header nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: rgb(252, 164, 113);
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    font-size: 25px;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

header nav ul li a:hover {
    background-color: #f44336;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: flex;
    flex-wrap: wrap;
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.order-buttons button {
    background-color: #b22222;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

@media (max-width: 600px) {
    .order-buttons {
        flex-direction: row;
    }

    .order-buttons button {
        width: 45%;
    }
}

button:hover {
    background: #080661;
    color: #f4f4f4;
}

/* Menu Section */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.menu h2 {
    font-size: 70px;
    margin-bottom: 10px;
    font-family: 'havergie';
    color: #af2020;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    text-align: center;
    color: #060606;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.menu-item img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.menu-item img:hover {
    transform: scale(1.1);
}

.menu-item p {
    margin-top: 10px;
    font-size: 18px;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background-color: #faf2e4;
    width: 100%;
}

.about-content {
    flex: 1;
    padding-left: 10px;
}

.about-content h1 {
    font-size: 10rem;
    font-family: 'havergie';
    color: #af2020;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    padding-right: 20px;
}

.about-image img {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    text-align: left;
    background-color: #c45525;
    color: white;
    padding: 10px;
    position: relative;
    width: 100%;
    display: flex;
    border: 2px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 10px;
}

.feature-box {
    width: 30%;
    padding: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-box img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

h2 {
    font-size: 25px;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.feature-box p {
    font-size: 18px;
    max-width: 500px;
    margin: 10px 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .feature-box {
        width: 90%;
    }
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #f48a5c;
    position: relative;
    width: 100%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
