/*
Theme Name: An Dan Coffee
Author: An Dan Coffee
Version: 1.0
*/

body {
    margin: 0;
    font-family: serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Top Bar */
.top-bar {
    background: #3a2a1a;
    color: #fff;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
    text-decoration: none;
}

/* Menu */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.main-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 80px;
        right: 0;
        width: 200px;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero */
.hero {
    padding: 100px 0;
    background: #f5f2ee;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    color: #3a2a1a;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #3a2a1a;
    color: #fff;
    text-decoration: none;
}
