.main{
    background-image: url(image/fresh-coffee.avif);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;

}
h2{
    font-family: 'Clicker Script', cursive;
     font-size: 50px;
}
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 80px;
}
nav h2 {
    margin: 0;
}
nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}
nav ul li{
    list-style: none;
    margin: 0 15px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
nav ul li a:hover {
    color: rgb(216, 166, 101);
}
nav .btn{
    margin-left: 15px;
    margin-top: 0;
}
h4{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
    margin-left: 80px;
    margin-top: 60px;
    margin-bottom: 0;
}
h5{
    color: white;
    font-family:'Clicker Script', cursive;
    font-size: 130px;
    font-weight: 400;
    margin-left: 60px;
    margin-top: -20px;
    margin-bottom: 0;
}
h6{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-left: 80px;
    margin-top: 0;
    line-height: 1.6;
}

.btn{
    background-color: rgb(216, 166, 101);  
    margin-left: 80px; 
    margin-top: 30px;
    color: #2b160b;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
.btn:hover {
    background-color: rgb(236, 186, 121);
}
/* Sticky Nav */
nav.sticky {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 80px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* About Section */
.top1 {
    display: flex;
    align-items: center;
    background-color: #f9f6f0;
    padding: 80px;
    gap: 50px;
    box-sizing: border-box;
}
.about-content {
    flex: 1;
}
.about-content .btn {
    margin-left: 0;
}
.about-image {
    flex: 1;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.dis {
    color: #603809;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-content p {
    font-family: 'Roboto', sans-serif;
    color: #707070;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Menu Section */
.top2 {
    padding: 80px;
    background-color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}
.top2 h1 {
    color: #603809;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.top2 p {
    color: #707070;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin-bottom: 50px;
}
.menu-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.menu-card {
    background-color: #f9f6f0;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.menu-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
.menu-card h3 {
    color: #603809;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    margin: 10px 0;
}
.menu-card p {
    color: #707070;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
}
.menu-card .price {
    display: block;
    color: #603809;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.menu-btn {
    margin-left: 0;
    margin-top: 0;
    width: 100%;
    padding: 12px;
}

/* Footer Section */
footer {
    background-color: #2b160b;
    color: white;
    padding: 60px 80px 20px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.footer-logo h2 {
    color: white;
    font-family: 'Clicker Script', cursive;
    font-size: 60px;
    margin: 0;
}
.footer-logo p {
    color: #d1b49e;
    margin-top: 10px;
}
.footer-links h3, .footer-socials h3 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 20px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #d1b49e;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-links ul li a:hover {
    color: rgb(216, 166, 101);
}
.social-icons a {
    color: #d1b49e;
    font-size: 24px;
    margin-right: 15px;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: rgb(216, 166, 101);
}
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #d1b49e;
}