* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scroll */

html {
    scroll-behavior: smooth;
}


/* Global Styles */

body {
    font-family: Arial, sans-serif;
    background-color: #0F0F0F;
    color: #FFFFFF;
    line-height: 1.6;
}

section {
    padding: 80px 40px;
}

button {
    transition: 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
}
h1, h2, h3 {
    font-family: "Playfair Display", serif;
}

p {
    color: #B5B5B5;
}












nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 60px;
    background-color: #0F0F0F;
}

nav h1 {
    color: #C9A24A;
    font-size: 24px;
    font-family: Arial, sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li {
    color: #B5B5B5;
    cursor: pointer;
    transition: 0.3s;
}

nav ul li:hover {
    color: #C9A24A;

}

/* Make the links in the nav clickable and styled */

nav ul li a {
    text-decoration: none;
    color: #B5B5B5;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #C9A24A;
}










.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;

    color: white;
    padding: 0 20px;
}

.hero {
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
}

.hero h2,
.hero p,
.hero button {
    position: relative;
    z-index: 2;
}

.hero button {
    margin-top: 20px;
    padding: 12px 25px;

    background-color: #C9A24A;
    border: none;
    color: #0F0F0F;

    font-weight: bold;
    cursor: pointer;

    transition: 0.3s;
}

.hero button:hover {
    background-color: #a88436;
    transform: translateY(-2px);
}

.menu {
    padding: 80px 40px;
    text-align: center;
}

.menu h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #C9A24A;
}

.menu-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background-color: #1A1A1A;
    width: 280px;
    padding: 15px;
    border-radius: 10px;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.card h3 {
    margin-top: 10px;
    color: #FFFFFF;
}

.card p {
    color: #B5B5B5;
    font-size: 14px;
    margin-top: 5px;
}

.about {
    padding: 5px 40px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    color: #C9A24A;
    font-size: 32px;
    margin-bottom: 20px;
   text-align: center;
}

.about-text p {
    color: #B5B5B5;
    margin-bottom: 15px;
    line-height: 1.6;
   text-align: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.contact {
    padding: 80px 40px;
    background-color: #0F0F0F;
    text-align: center;
}

.contact h2 {
    color: #C9A24A;
    margin-bottom: 40px;
    text-align: center;
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    
}
.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.contact-info p {
    color: #B5B5B5;
    margin-bottom: 10px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    outline: none;
}

.contact-form button {
    background-color: #C9A24A;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form button:hover {
    background-color: #a88436;
}



/* Responsive Styles */

@media (max-width: 768px) {

    nav {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

nav ul {
    flex-direction: column;
    gap: 10px;
    text-align: center;
}

/* Hero Section */

.hero h2 {
    font-size: 28px;
}

.hero p {
    font-size: 14px;
}


/* Menu Section */

.menu-container {
    flex-direction: column;
    align-items: center;
}

/* About Section */

.about-container {
    flex-direction: column;
    text-align: center;
}

/* Contact Section */

.contact-container {
    flex-direction: column;
    text-align: center;
}
    
}


/* Footer */

footer {
    background-color: #080808;
    text-align: center;
    padding: 30px 20px;
}

footer p {
    margin: 8px 0;
    color: #B5B5B5;
}

footer p:nth-child(2) {
    color: #C9A24A;
    font-weight: bold;
}







