/* Google Fonts */
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Header */
header {
    background: white;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    width: 70%;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 2%;
    margin: 20px 40px ;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #2c2c2c;
    text-transform: lowercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fbb200;
}

/* Hero Section */
.hero {
    background: url('https://preview.colorlib.com/theme/foodfun/assets/images/banner-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    text-align: center;
    color: white;

}


.hero-text .tagline {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.3;
    color: white;
}

.highlight {
    color: #fbb200;
}
