/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: #6b4226;
    color: #fff;
    position: sticky;
    top: 0;
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: #f5c16c;
}

/* Hero */
.hero {
    background: url('https://images.unsplash.com/photo-1511920170033-f8396924c348?auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
    height: 80vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero button {
    padding: 10px 25px;
    font-size: 1rem;
    border: none;
    background: #f5c16c;
    color: #6b4226;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.hero button:hover {
    background: #d4a05d;
}

/* Menu */
.menu {
    padding: 50px;
    background: #f8f3f0;
    text-align: center;
}

.menu h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #6b4226;
}

.coffee-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 10px;
    width: 250px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.card h3 {
    color: #6b4226;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.card button {
    padding: 8px 20px;
    border: none;
    background: #6b4226;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.card button:hover {
    background: #4d2d1a;
}

/* Contact */
.contact {
    padding: 50px;
    background: #f5f0eb;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #6b4226;
}

.contact p {
    margin-bottom: 10px;
    color: #333;
}

/* Footer */
footer {
    padding: 20px;
    background: #6b4226;
    color: #fff;
    text-align: center;


/* Branches */
.branches {
    padding: 50px;
    background: #f8f3f0;
    text-align: center;
}

.branches h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #6b4226;
}

.branch-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.branch {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.branch:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.branch h3 {
    color: #6b4226;
    margin-bottom: 10px;
}

.branch p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
/* Popup for branch info */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    z-index: 100;
}

.popup h3 {
    color: #6b4226;
    margin-bottom: 10px;
}

.popup p {
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.popup .closeBtn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #6b4226;
}
}