* {
    font-family: "poppins", sans-serif !important;
    box-sizing: border-box;
}

i, .fa, .fa-solid, .fa-user {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

html, body {
    margin: 0;
    font-weight: 500;
    font-size: 20px;
    background: #2e282a;
}

.custom-navbar {
    width: 96.5%;
    background-color: rgba(255, 202, 175, 0.5);
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    margin: 10px auto;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.custom-navbar nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-group,
.right-group {
    display: flex;
    align-items: center;
    gap: 30px;
}

.left-group a,
.right-group a {
    text-decoration: none;
    font-weight: 550;
    color: #3a2a2a;
    transition: 0.2s ease;
}

.left-group a:hover,
.right-group a:hover {
    opacity: 0.7;
}

.logo {
    height: 45px;
    margin-left: 15px;
    border-radius: 5px;
}

.account-btn i {
    font-size: 26px;
    opacity: 0.8;
    transition: 0.3s ease;
    cursor: pointer;
    margin-right: 15px;
}

.account-btn:hover i {
    opacity: 1;
    transform: scale(1.3);
}

.user-dropdown {
    position: relative;
    cursor: pointer;
}

.user-dropdown i {
    font-size: 26px;
    opacity: 0.8;
    transition: 0.3s ease;
}

.user-dropdown:hover i {
    opacity: 1;
    transform: scale(1.15);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 38px;
    right: 0;
    background: #ffead7;
    padding: 12px 0;
    border-radius: 12px;
    min-width: 160px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    text-align: left;
    z-index: 2000;
}

.dropdown-content a {
    display: block;
    padding: 10px 18px;
    color: #3a2a2a;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: rgba(255,202,175,0.7);
}

#mongaCarousel {
    width: 90%;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-item img {
    height: 500px;
    object-fit: cover;
    filter: brightness(60%) opacity(0.85);
    transition: 0.4s ease-in-out;
}

.carousel-item:hover img {
    filter: brightness(70%) opacity(0.95);
}

.carousel-caption {
    bottom: 18%;
    text-shadow: 0px 3px 10px rgba(0, 0, 0, 0.7);
}

.carousel-caption h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffead7;
}

.carousel-caption p {
    font-size: 20px;
    margin-top: 6px;
    color: #ffe2cf;
}

.info-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px auto;
    width: 90%;
}

.info-card {
    background: #743d42;
    border: 3px solid #b6636a;
    width: 450px;
    height: 240px;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    color: #fff;
    transition: 0.25s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    background: #c14953;
}

.info-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 20px;
    opacity: 0.9;
}

.email-footer {
    background: rgba(255, 202, 175, 0.5);
    color: #ffead7;
    width: 90%;
    margin: 35px auto 0;
    padding: 40px 0 30px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.25);
}

.footer-heading {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 22px;
    color: #ffdfc9;
}

.signup-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.signup-form input {
    width: 260px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #b6636a;
    background: #ffe6dd;
    font-size: 18px;
    color: #3a2a2a;
}

.signup-form input::placeholder {
    color: #7a5b5b;
}

.signup-form button {
    background: #b6636a;
    border: 2px solid #743d42;
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    font-weight: 500;
    transition: 0.25s ease;
}

.signup-form button:hover {
    background: #e45b64;
    transform: translateY(-3px);
}

.footer-note {
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.8;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-box {
    background: #ffead7;
    color: #3a2a2a;
    padding: 55px 45px 40px;
    border-radius: 25px;
    text-align: center;
    width: 420px;
    position: relative;
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    animation: popupFade 0.3s ease-out;
    overflow: visible;
}

.popup-box {
    padding: 50px 45px 50px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup-box h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.popup-box p {
    margin-top: 0;
    margin-bottom: 0;
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background: none;
    border: none;
    font-size: 32px;
    font-weight: 700;
    color: #3a2a2a;
    cursor: pointer;
    transition: 0.2s ease;
    line-height: 1;
}

.popup-close:hover {
    opacity: 0.5;
    transform: scale(1.15);
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.toast {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 24px;
    background: #ffead7;
    color: #3a2a2a;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: left;
    font-size: 18px;
    z-index: 3000;
    animation: fadeInToast 0.35s ease-out;
}

.toast button {
    background: none;
    border: none;
    font-size: 22px;
    font-weight: 700;
    color: #3a2a2a;
    cursor: pointer;
    position: absolute;
    top: 6px;
    right: 10px;
    opacity: 0.75;
    transition: 0.2s;
}

.toast button:hover {
    opacity: 1;
    transform: scale(1.2);
}

@keyframes fadeInToast {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.auth-container {
    width: 420px;
    background: #ffead7;
    margin: 80px auto;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.auth-container input {
    width: 85%;
    padding: 12px;
    font-size: 18px;
    border-radius: 10px;
    border: 2px solid #b6636a;
    margin: 10px 0;
    outline: none;
}

.auth-btn, .google-btn {
    width: 90%;
    padding: 12px;
    font-size: 18px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    transition: 0.2s;
}

.auth-btn { background: #743d42; color: #fff; }
.auth-btn.secondary { background: #b6636a; }
.google-btn { background: #fff; border: 2px solid #743d42; }
.google-btn i { margin-right: 8px; }

.auth-btn:hover, .google-btn:hover { transform: translateY(-2px); opacity: 0.85; }

.divider { margin: 18px 0; font-size: 18px; opacity: 0.6; }
#auth-message { margin-top: 10px; font-size: 16px; }

.history-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px auto;
    width: 90%;
}

.history-card {
    background: #743d42;
    border: 3px solid #b6636a;
    width: 1200px;
    height: 110px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    transition: 0.25s ease;
}

.history-card:hover {
    transform: translateY(-6px);
    background: #c14953;
}

.history-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.history-card p {
    font-size: 20px;
    opacity: 0.9;
}

.historyinfo-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px auto;
    width: 90%;
}

.historyinfo-card {
    background: #634850;
    border: 3px solid #000000;
    width: 1100px;
    border-radius: 18px;
    text-align: left;
    color: #fff;
    transition: 0.25s ease;
    padding: 30px;
}

.historyinfo-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

.historyinfo-card p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: normal;
}

.menuitem-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 20px auto;
    width: 90%;
}

.menuitem-card {
    background: #2a2023;
    border: 3px solid #000000;
    width: 370px;
    height: 240px;
    border-radius: 8px;
    padding: 10px 30px 20px 30px;
    text-align: center;
    color: #fff;
    transition: 0.25s ease;
}

.menuitem-card:hover {
    transform: translateY(-6px);
    background: #46353a;
}

.menuitem-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.menuitem-card p {
    font-size: 10px;
    opacity: 0.9;
    font-weight: normal;
}

.menuitem-card h4 {
    font-size: 15px;
    opacity: 0.9;
}

.menuitem-section.left-start {
    justify-content: flex-start;
}

.menu-section {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 60px auto;
    width: 90%;
}

.menu-card {
    background: #743d42;
    border: 3px solid #b6636a;
    width: 1200px;
    height: 110px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    transition: 0.25s ease;
}

.menu-card h3 {
    font-size: 30px;
    margin-bottom: 8px;
}

#google-btn .google-icon {
    width: 16px;
    height: 16px;
}
