* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
}

/* 1. Topbar Styling */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 40px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #f0f0f0;
    font-size: 11px;
    color: #666666;
}

.topbar-left span {
    margin-right: 25px;
}

.topbar-right .search-box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 2px;
}

.search-box input {
    border: none;
    outline: none;
    font-size: 11px;
    width: 120px;
    color: #666;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10px;
}

/* 2. Logo Styling */
.logo-container {
    text-align: center;
    padding: 30px 0 20px 0;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    color: #333333;
    line-height: 1;
}

.logo-sub {
    font-size: 9px;
    letter-spacing: 4px;
    color: #888888;
    margin-top: 5px;
}

/* 3. Navbar Styling */
.navbar {
    display: flex;
    justify-content: center;
    gap: 35px;
    padding: 15px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar a {
    text-decoration: none;
    color: inherit;
}

.nav-item {
    cursor: pointer;
    color: #333333;
    transition: color 0.2s;
}

.nav-item:hover, .nav-item.active {
    color: #d4a373; 
}

/* 6. Footer Styling */
.site-footer {
    background-color: #f7f7f7;   
    width: 100%;                 
    margin: 40px 0 0 0;          
    border-radius: 0;          
    padding: 20px 40px;         
    font-size: 12px;
    color: #666666;
    border-top: 1px solid #f0f0f0; 
}

.footer-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    max-width: 100%;             
}

.footer-left {
    font-weight: 400;
}

.footer-right {
    font-weight: 400;
}

.footer-right .heart {
    color: #e63946; 
    margin-left: 2px;
}
