/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    overflow-x: hidden;
    /* Prevents horizontal scrolling */
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #1a0a00;
    color: bisque;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow-x: hidden;
    /* Prevents horizontal overflow */
}

a {
    text-decoration: none;
    color: bisque;
}


/* Header */
header {
    background-color: #00000093;
    padding: 20px 10%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    overflow: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li {
    cursor: pointer;
    transition: 0.3s ease;
}

.nav-links li:hover {
    transform: translateY(-3px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    nav {
        text-align: center;
    }

    .nav-links {
        margin-top: 10px;
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero .hero-content img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero .hero-content .text-info {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: rgba(0, 0, 0, 0.77);
    color: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 400px;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero .hero-content img {
        height: 80vh;
    }

    .hero .hero-content .text-info {
        bottom: 10%;
        right: 5%;
        padding: 15px;
        font-size: 14px;
        max-width: 90%;
    }
}

/* Menu Section */
.menu {
    margin-top: 6%;
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.menu .cards {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 3%;
}

/* Card section */
.menu .card {
    width: 25%;
    height: 65vh;
    background-color: #fff;
    margin-bottom: 4%;
    color: #1a0a00;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.menu .card:hover {
    transform: translateY(-5px);
}

/* Card Image */
.menu .card img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease-in-out;
}

.menu .card img:hover {
    transform: scale(1.1);
}

/* Card Content */
.menu .card .info {
    padding: 20px;
}

.card .info h3 {
    font-size: 1.5rem;
}

.card .info .rate {
    color: #954a00;
    font-weight: 800;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .menu .card {
        width: 45%;
        height: 55vh;
    }

    .menu .card img {
        height: 35vh;
    }
}

@media (max-width: 768px) {
    .menu .cards {
        flex-direction: column;
        align-items: center;
    }

    .menu .card {
        width: 80%;
        height: auto;
    }

    .menu .card img {
        height: 30vh;
    }
}

/* About Section */
.about {
    margin-top: 6%;
    width: 100%;
    background-color: rgba(81, 0, 0, 0.23);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 10%;
    gap: 50px;
    flex-wrap: wrap;
    overflow: hidden;
}

.about .about-title {
    flex: 1;
    color: bisque;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 600px;
}

.about .about-title h2 {
    font-size: 2rem;
}

.about .about-title p {
    font-size: 1rem;
}

.about .about-img {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.about .about-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s;
}

.about .about-img img:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .about .about-title {
        font-size: 1rem;
    }

    .about .about-img img {
        max-width: 100%;
    }
}

/* Contact Section */

.contact {
    margin-top: 5%;
    width: 100%;
    background-color: rgb(255, 255, 255);
    padding: 50px 10%;
    color: #1a0a00;
    overflow: hidden;
}

.contact h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

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

.contact-info {
    flex: 1;
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 500px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-form {
    flex: 1;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.contact-form h2 {
    color: bisque;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    color: #1a0a00;
    background: #fff;
    resize: none;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    background: #954a00;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact-form button:hover {
    background: #732f00;
}

@media (max-width: 768px) {
    .contact {
        padding: 30px 5%;
    }

    .contact-info {
        font-size: 1rem;
    }

    .contact-form {
        width: 100%;
        margin-top: 5%;
    }

    .contact-container {
        display: block;
    }
}

/* Footer Section */

footer {
    margin: 5%;
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 1.5rem;
}

footer i {
    margin: 10px;
}

footer p{
    font-size: 1rem;
}