* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 50px;
}

body {
    font-family: Helvetica, sans-serif;
    width: 100%;
    height: 100vh;
    background-color: #E3DAC9;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

img {
    display: block;
    max-width: 100%;
}

.text-center {
    text-align: center;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.align-items-center {
    align-items: center;
}

.position-absolute {
    position: absolute;
}

.position-relative {
    position: relative;
}

.w-1 {
    width: 100%;
}

.w-2 {
    width: 50%;
}

.w-3 {
    width: 33.33%;
}

.w-4 {
    width: 25%;
}

.w-5 {
    width: 20%;
}

.py {
    padding: 80px 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.column {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

/* Header Section */
.nav-bar {
    height: 100px;
    background-color: #83522f;
    border-bottom: 2px solid #492c18;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}

.logo img {
    width: 180px;
    margin-left: 60px;
}

.nav-bar nav a {
    font-size: 20px;
    font-weight: 600;
    margin-right: 80px;
    color: #291202;
}

.nav-bar .icon {
    display: none;
    font-size: 40px;
}

.nav-bar nav a:hover {
    color: white;
    text-decoration: underline;
}

/* Banner Section */
.banner {
    height: 550px;
    width: 100%;
    background-image: url('images/banner.jpg');
    background-size: cover;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.6);
    background-position: center;
    position: relative;
    z-index: 9;
}

.banner::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.23);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-content {
    width: 100%;
}

.banner-content h1 {
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    color: #d69364fa;
    width: 25%;
    margin-left: 40px;
    margin-top: 30px;
}

.banner-content h1 span {
    font-size: 65px;
    font-weight: 600;
    color: white;
}

.banner-content h1 span strong {
    font-size: 85px;
    font-weight: 900;
    color: rgb(171, 104, 4);
}

.banner-content p {
    font-size: 18px;
    font-weight: 100;
    text-transform: capitalize;
    color: white;
    width: 25%;
    margin-left: 40px;
    margin-top: 30px;
}

.banner-content p span {
    font-size: 20px;
    font-weight: 600;
    color: #d69364fa;
}

.btn-start {
    background: white;
    color: #492c18;
    border: 1px solid white;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    margin-left: 100px;
    margin-top: 30px;
}

.btn-start i {
    margin-left: 10px;
    font-size: 20px;
}

.btn-start:hover {
    background-color: #b65b1e;
    border: 1px solid #b65b1e;
    color: white;
}

/* Seller Section */
.title h2 {
    color: #462712dd;
    font-size: 33px;
    margin-top: 40px;
}

.title h2 span {
    color: #331807f5;
    font-size: 38px;
    font-weight: 800;
    margin-top: 40px;
    margin-left: 10px;
}

.title p {
    color: #492c18cf;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.seller-content {
    margin: 40px auto;
    background-color: #d4b39c77;
    width: 275px;
    height: 470px;
    border: 2px solid #90430c;
    border-radius: 15px;
    box-shadow: 0 0 5px 7px rgba(0, 0, 0, 0.5);
}

.seller-content img {
    width: 280px;
    height: 250px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.seller-content h3 {
    font-size: 30px;
    font-family: serif;
    color: #3c1e0a;
    margin-left: 20px;
    margin-top: 20px;
}

.seller-content h3:hover {
    text-decoration: underline;

}

.seller-content p {
    font-size: 15px;
    color: #50311de0;
    margin: 15px auto;
    width: 85%;
}

.seller-content button {
    font-size: 17px;
    margin: 0 auto;
    background-color: #bc784b;
    width: 50%;
    padding: 10px 20px;
}

.seller-content button:hover {
    background-color: #291202b1;
    border: 1px solid #291202b1;
    color: white;
}

/* About Section */
.about {
    margin-top: 50px;
}

.about img {
    width: 550px;
    height: 450px;
    box-shadow: 0 0 9px 9px rgba(0, 0, 0, 0.7);
}

.about p span {
    font-size: 38px;
    font-weight: 600;
    color: #663f25;
}

.about h2 {
    font-size: 58px;
    font-weight: 900;
    color: #3c1e0a;
}

.about p {
    width: 85%;
    font-size: 17px;
    margin-top: 15px;
    color: #50311d;
    font-family: serif;
}

/* Hero Section */
.hero {
    height: 450px;
    margin-top: 50px;
    width: 100%;
    background-image: url('images/hero.png');
    background-size: cover;
    background-position: center;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 9;
}

.hero::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(82, 51, 5, 0.258);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-content {
    width: 100%;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
    color: white;
    font-family: serif;
    margin-left: 40px;
}

.hero-content p {
    font-size: 17px;
    font-weight: 600;
    text-transform: capitalize;
    color: white;
    width: 35%;
    margin: 20px 40px;
    line-height: 30px;
}

.start {
    background: #703c19;
    color: white;
    border: 1px solid #703c19;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 24px;
    margin-top: 20px;
    margin-left: 40px;
    box-shadow: 0 5px 5px rgba(36, 17, 0, 0.851);
}

.start:hover {
    background-color: #783f1acb;
    color: #3c1e0a;
}

/* Categories Section */
.title1 h2 {
    color: #462712f5;
    font-size: 35px;
    margin-top: 40px;
    font-family: serif;
}

.title1 p {
    color: #492c18cf;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

.categories {
    margin: 10px auto;
}

.categories-content {
    margin: 40px;
}

.categories-content1 {
    background-image: url('images/c1.jpeg');
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 220px;
    border-radius: 20px;
    position: relative;
    z-index: 9;
}

.categories-content1::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.421);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.categories-content2 {
    background-image: url('images/c2.jpeg');
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 220px;
    border-radius: 20px;
    position: relative;
    z-index: 9;
}

.categories-content2::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.421);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.categories-content3 {
    background-image: url('images/c3.jpeg');
    background-size: cover;
    background-position: center;
    width: 350px;
    height: 220px;
    border-radius: 20px;
    position: relative;
    z-index: 9;
}

.categories-content3::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.421);
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.categories-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-top: 20px;
}

.title-line {
    display: block;
    width: 50px;
    height: 2px;
    background: white;
    margin-top: 7px;
}

.categories-content a {
    font-size: 17px;
    color: rgb(239, 236, 236);
    margin-top: 20px;
}

.categories-content a:hover {
    text-decoration: underline;
}

/* Cafe Section */
.cafe1 img {
    width: 360px;
    height: 250px;
    margin: 20px 0;
    margin-right: 80px;
}

.cafe4 img {
    width: 360px;
    height: 250px;
    margin: 20px 0;
    margin-right: -10px;
}

.cafe1 .cafe3,
.cafe4 .cafe3 {
    width: 360px;
    height: 350px;
    margin: 20px 0;
}

.cafe2 img {
    width: 550px;
    height: 890px;
    margin: 20px -24px;
}

/* Feedback Section */
.title2 p {
    font-size: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: "Brush Script MT", "Lucida Handwriting", "Apple Chancery", cursive;
}

.feedback {
    background-color: #ac9a8e;
    margin-top: 50px;
    height: 430px;
}

.feedback-content {
    background: #f1ede7;
    padding: 22px;
    width: 400px;
    height: 250px;
    margin-top: 50px;
    margin-left: 30px;
    border-radius: 6px;
    box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.5);
    transition: all 0.5s linear;
}

.feedback-content:hover {
    transform: scale(1.1);
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.profile {
    display: flex;
    gap: 12px;
    align-items: center;
}

.profile img {
    width: 78px;
    height: 78px;
    border: 3px solid #291202;
    border-radius: 50%;
    object-fit: cover;
}

.profile h4 {
    font-size: 15px;
    color: #333;
}

.profile span {
    font-size: 13px;
    color: #777;
}

.stars {
    color: #ff9800;
    font-size: 15px;
}

.feedback-content p {
    font-size: 15px;
    line-height: 25px;
    color: #555;
}

/* Blog Section */
.title3 h2 {
    font-size: 30px;
    font-weight: 600;
    color: #6f3d1b;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 40px;
}

.title3 h2 span {
    font-size: 38px;
    font-weight: 900;
    color: #291202e8;
    margin-left: 5px;
}

.blog-content img {
    width: 320px;
    margin: 10px auto;
    border-radius: 10px;
    height: 270px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #3c1b05;
    margin-top: 10px;
    margin-left: 45px;
}

.blog-content p {
    font-size: 15px;
    color: #50311dc6;
    margin: 15px auto;
    width: 75%;
    margin-top: 10px;
    margin-left: 45px;
}

/* Join Section */
.join {
    height: 350px;
    margin-top: 60px;
    width: 100%;
    background-image: url('images/join.jpeg');
    background-size: cover;
    background-position: top;
    box-shadow: 2px 2px 5px 5px rgba(0, 0, 0, 0.9);
    position: relative;
    z-index: 9;
}

.join::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(82, 51, 5, 0.258);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.join-heading h2 {
    font-size: 30px;
    margin-top: 70px;
    color: #3c1e0a;
}

.join-heading p {
    font-size: 20px;
    margin-top: 20px;
    color: #4f2d16dc;
    font-family: serif;
}

.join-form input {
    background-color: rgba(255, 255, 255, 0.91);
    padding: 10px 100px;
    margin-top: 30px;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.91);
    border-radius: 25px;
    box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.5);
}

.join-form button {
    background-color: #291202;
    color: white;
    padding: 10px 40px;
    margin-top: 50px;
    margin-left: 30px;
    font-size: 16px;
    border: 1px solid #291202;
    border-radius: 25px;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.7);
    transition: all 0.5s linear;
}

.join-form button:hover {
    background-color: #813905;
    color: white;
    border: 1px solid #813905;
    transform: scale(1.1);
}

/* Footer Section */
.footer {
    background: #e6e2dc;
    padding: 20px 15px;
    margin-top: 50px;
    height: 170px;
}

.footer h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #4b2e1e;
}

.footer .subtitle {
    margin: 10px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: serif;
    color: #6b4b3a;
}

.footer .paragraph {
    margin: 5px 0 10px;
    font-size: 15px;
    color: #555;
}

.footer .info {
    font-size: 16px;
    color: #333;
    margin-top: 8px;
}

.footer .info a {
    color: #333;
    text-decoration: none;
}

.footer .info a:hover {
    text-decoration: underline;
}