@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/* --- Global Styles --- */

body {
    font-family: 'Inter', sans-serif;
    background-color: #F5F0E1;
    padding-top: 5rem; /* Space below the fixed nav bar (80px) */
    margin: 0;
}

.hidden {
    display: none !important;
}

/* --- Navigation Bar Styles --- */

#cafe-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl equivalent */
    z-index: 50;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem; /* h-20 equivalent */
}

/* --- Logo Area --- */

.logo-area {
    flex-shrink: 0;
}



.brand-link {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800; /* font-extrabold */
    color: #4A3B30;
    letter-spacing: -0.025em; /* tracking-tight */
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cafe-icon {
    width: 2rem; /* w-8 */
    height: 2rem; /* h-8 */
    margin-right: 0.5rem; /* mr-2 */

    color: #A37E56; /* text-accent */
    border-radius: 6rem;
}

.cafe-accent {
    color: #A37E56;
    margin-left: 0.25rem;
}

/* --- Desktop Links --- */

.desktop-nav {
    display: none; /* hidden by default, shown via media query */
    align-items: center;
    gap: 2rem; /* md:space-x-8 */
    margin-left: 1.5rem; /* md:ml-6 */
}

.nav-link {
    color: #4A3B30;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    text-decoration: none;
    transition: all 150ms ease-in-out;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #A37E56;
    border-color: #A37E56;
}

.cta-button {
    background-color: #A37E56;
    color: white;
    padding: 0.5rem 1.25rem; /* px-5 py-2 */
    border-radius: 9999px; /* rounded-full */
    font-size: 0.875rem;
    font-weight: 600; /* font-semibold */
    text-decoration: none;
    transition: all 200ms ease-in-out;
    box-shadow: 0 4px 6px -1px rgba(163, 126, 86, 0.5), 0 2px 4px -2px rgba(163, 126, 86, 0.5);
}

.cta-button:hover {
    background-color: #8F6C4C;
    transform: scale(1.05);
}

/* --- Mobile Button & Menu --- */

.mobile-button-container {
    display: flex;
    align-items: center;
}

.mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem; /* p-2 */
    border-radius: 0.375rem; /* rounded-md */
    color: #4A3B30;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 150ms ease-in-out;
}

.mobile-menu-button:hover {
    color: white;
    background-color: #A37E56;
}

.mobile-menu-button svg {
    height: 1.5rem;
    width: 1.5rem;
}

.mobile-menu-transition {
    transition: max-height 0.3s ease-in-out;
    overflow: hidden;
    max-height: 0;
}

.mobile-menu {
    border-top: 1px solid #F5F0E1;
}

.mobile-links-container {
    padding-left: 0.5rem; 
    padding-right: 0.5rem;
    padding-top: 0.5rem; 
    padding-bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem; 
}

.mobile-link {
    color: #4A3B30;
    display: block;
    padding: 0.5rem 0.75rem; 
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 150ms ease-in-out;
}

.mobile-link:hover {
    background-color: #F5F0E1;
}

.cta-mobile {
    background-color: #A37E56;
    color: white;
    font-weight: 600;
    text-align: center;
    margin-top: 0.5rem;
}

.cta-mobile:hover {
    background-color: #8F6C4C;
}


.main-content {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem 1rem;
}

.main-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #4A3B30;
    margin-bottom: 1rem;
}

.main-content p {
    font-size: 1.125rem;
    color: #6b7280;
}

.placeholder-content {
    height: 24rem;
    width: 100%;
    background-color: #EAE2D7;
    border-radius: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.placeholder-content p {
    color: #9ca3af;
    font-style: italic;
}



@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-button-container {
        display: none;
    }
}

.dropdown {
    position: relative; 
    display: inline-block; 
}

.dropdown-content {
    display: none; 
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    padding: 10px 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.specialty-item {
    text-align: center;
    padding: 20px;
    margin-bottom: 40px;
}


.specialty-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}


.hexagon-icon {
    width: 120px;
    height: 104px;
    background-color: #ffc107; 
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0a800;
    background-color: url("/asset/quality.png");
    background-size: cover;
}


.icon {
    width: 60px;
    height: 60px;
    fill: black;
}


.specialty-heading {
    font-family: 'Your Brand Font', sans-serif; 
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}


.specialty-description {
    font-family: 'Your Body Font', sans-serif;
    font-size: 16px;
    color: #555;
    max-width: 300px;
    margin: 0 auto;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    margin-top: 40px;
    font-size: 0.9em;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-popup {
    text-align: center;
    margin-top: 20px;
}

#loginFormContainer {
    max-width: 350px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    
}

#loginFormContainer.hidden {
    display: none;
}

#showLoginBtn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
}