 :root {
    font-family: 'Inter', sans-serif;
}

/* Desktop Styles (Default) */
p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 22px;
    font-style: normal;
    line-height: 170.5%;
    text-align: left;

}

li {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    font-style: normal;
    line-height: 170.5%;
    text-align: left;
}

h1 {
    font-family: 'Baskervville SC', serif;
    font-size: 40px;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-family: 'Baskervville SC', serif;
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
}

h3 {
    font-family: 'Baskervville SC', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
}

/* iPad Styles */
@media screen and (max-width: 1024px) {
    p, li {
        font-size: 20px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 23px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    p, li {
        font-size: 18px;
        text-align: justify;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 20px;
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    p, li {
        font-size: 18px;
        text-align: justify;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 18px;
    }
}

/* General Styles */
html, body {
    height: 100%;
    margin: 0;
    margin-top: 20px;
    padding: 0;
    background-color: #000;
    overflow-x: hidden;
}

/* Header - Navigation */
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0%;
    background-color: #000;
    border-bottom: 1.5px solid #C2A550;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    transition: box-shadow 0.3s ease;
}



.header.scrolled {
    box-shadow: 0 2px 10px rgba(194, 165, 80, 0.2);
}

.logo img {
    height: 66px;
}
.nav-links {
    display: flex;
    align-items: center;
    /* gap: 6px; */
}

.nav-link {
    text-decoration: none;
    padding: 0 18px;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
}

.nav-color {
    background: linear-gradient(180deg, #DCA711 0%, #A9A390 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-color-active{
    background: linear-gradient(180deg, #BDBCBC, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-color:active{
    background: linear-gradient(180deg, #BDBCBC, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link:hover {
    background: linear-gradient(180deg, #BDBCBC, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    padding: 0 20px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 20;
    padding: 5px 5px;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
    display: block;
}

.dropdown-item {
    color: #C2A550;
    padding: 12px 16px;
    /* margin: 15px 0;  */
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: block;
    line-height: 1.5; 
}

/* Added hover effect for dropdown items */
.dropdown-item:hover {
    background-color: #800000;
    border-radius: 4px;
}
/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    color: #C2A550;
    font-size: 24px;
    cursor: pointer;
    z-index: 100;
}

/* Reservation Button */
.header-button {
    display: flex;
    width: 140px;
    height: 30px;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    color: #C8A544;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    border-radius: 57px;
    border: 1.425px solid #C8A544;
    background: var(--Maroon---Main, #800000);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.header-button:hover {
    background-color: #000;
    color: #C8A544;
}

.header-button-alt {
    display: flex;
    /* width: 139px; */
    height: 30px;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    color: black;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    border-radius: 57px;
    border: 1.425px solid black;
    background: var(--Maroon---Main, #C8A544);
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.header-button-alt:hover {
    background-color: #800000;
    color: #C8A544;
}


/* Desktop Buttons Container */
.header-buttons-container {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Mobile Buttons Container - initially hidden */
.mobile-buttons {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
}

/* Mobile Styles */
@media (max-width: 767px) {
    /* Hide desktop buttons on mobile */
    .header-buttons-container {
        display: none;
    }
    
    /* Show mobile buttons when menu is active */
    .nav-links.active .mobile-buttons {
        display: flex;
    }
    
    /* Adjust nav links container */
    .nav-links.active .nav-links-container {
        padding: 20px;
    }
    
    /* Adjust button styles for mobile */
    .mobile-buttons .header-button,
    .mobile-buttons .header-button-alt {
        width: 80%;
        text-align: center;
        padding: 12px 0;
        margin: 5px 0;
    }
    
    /* Ensure proper spacing */
    .nav-links.active {
        padding-bottom: 20px;
    }
}

/* Ensure dropdowns don't interfere with buttons */
@media (max-width: 767px) {
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        margin-top: 0;
    }
}

/* iPad and Tablet-Specific Styles */
@media (min-width: 768px) and (max-width: 1024px) {
    /* .header {
        padding: 20px 4%;
    } */

    .logo img {
        height: 35px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
        padding: 0 8px;
    }

    .header-button {
        font-size: 12px;
        padding: 6px 12px;
        width: 80px;
        height: 20px;
    }

    .dropdown-content {
        right: 0;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .header {
        /* padding: 12px 1%; */
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo img {
        height: 40px;
    }

    .menu-toggle {
        display: block;
        padding-right: 10px;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        border-top: 1px solid #C2A550;
    }

    .nav-links.active {
        display: flex;
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #111;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

}

/* Location Section */
.location-section {
    max-width: 1251px;
    margin: 0 auto;
    padding: 20px;
    background-color: #000000;
}

.location-upper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.location-info {
    position: relative;
    top: -50px;
    justify-content: center;
    padding: 10px;
    margin-bottom: -50px;
    text-align: center;
}

.location-info h2 {
    color: #C2A550;
}

.location-info a {
    color: #BBB;
    text-decoration: underline;
}

.loc_info_text {
    display: block;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin-right: 10px;
}

.loc_info_text p, .loc_info_text a {
    color: #BBB;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    text-decoration: none;
}

#loc_info_header {
    text-decoration: underline;
}

.location-map {
    width: 601px;
    height: 426px;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
  .map-container {
    position: relative;
    width: 100%;
    height: 50%; /* Default to 50% height for desktop */
    overflow: hidden;
    background-color: white;
  }
  
  .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  @media (max-width: 768px) {
    .location-info {
        margin-bottom: 0px;
        top:0px;
      }

    .map-container {
      height: 40%; /* 100% height for mobile */
    }
  }  

/* Footer Styles */
footer {
    background: linear-gradient(180deg, rgba(112, 0, 0, 0.06) 0%, rgba(175, 2, 2, 0.32) 100%), #000000;
    color: #C2A550;
    width: 100%;
    padding: 40px 20px;
    position: relative;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    /* gap: 30px;
    margin-bottom: 40px; */
}


.footer-link {
    color: #BBB; /* Changes the text color */
    text-decoration: none; /* Removes the underline */
  }
  
  .footer-link:hover {
    text-decoration: underline; /* Adds underline on hover */
  }

.location-icon {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;  /* Allow elements to wrap if needed */
    margin-bottom: 15px;  /* Add spacing between items */
}

.icon-circle {
    min-width: 75px;
    height: 75px;
    display: flex;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
}


.icon-circle img {
    width: 75px;
    height: 75px;
    object-fit: contain;
}

.icon_text {
    flex: 1;
    max-width: 350px;  /* Limit the width of the text block */
    word-wrap: break-word;
}

.lastorder {
    font-style: italic;
    font-weight: 300;
    font-size: 18px;
}

b.footer-alert {
    font-weight: bold;
    font-size: 14px;
    /* animation: flash 2s infinite; */
    background: #C8A544;
    padding: 4px;
    border-radius: 2px;
    color: #800000;
}

b.footer-alert-desc {
    font-weight: bold;
    font-size: 14px;
    /* animation: flash 2s infinite; */
    background: #C8A544;
    padding: 4px;
    border-radius: 2px;
    color: #800000;
}
@keyframes flash {
    0%, 100% {
        color: #800000; /* dark red */
    }
    50% {
        color: #bbb; /* brighter red */
    }
}

.icon_text h3 {
    color: #C5A46D;
    font-size: 25px; /* Desktop header size */
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.icon_text p {
    color: #BBB;
    font-size: 20px; /* Desktop paragraph size */
    line-height: 1.5;
    margin: 0;
}

.footer-email {
    color: #BBB;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #C2A550;
}

/* Footer Middle Section */
.footer-middle {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    padding: 20px 0;
    border-bottom: 1px solid rgba(194, 165, 80, 0.2);
}

.developed-by {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.developed-by span {
    color: #C2A550;
    font-size: 20px;
}

.developed-by img {
    height: 93px;
    width: 250px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-connect {
    color: #C2A550;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 21px;
    height: 21px;
}

.social-icons a {
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* Footer Bottom Section */
.footer-bottom {
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #C2A550;
    text-decoration: none;
    font-size: 20px;
}

.footer-links a:hover {
    opacity: 0.8;
}

.divider {
    color: #C2A550;
    margin: 0 10px;
    font-size: 20px;
}

.copyright {
    color: #C2A550;
    font-size: 20px;
}

/* Tablet/iPad Styles */
@media screen and (max-width: 1096px) {
    footer {
        height: auto;
        min-height: fit-content; /* Changed from fixed 600px min-height */
        overflow: hidden; /* Prevent extra scrolling */
    }

    .footer-content {
        padding: 40px 30px 0; /* Remove bottom padding */
        height: auto; /* Allow content to determine height */
        display: flex;
        flex-direction: column;
    }

    .footer-top {
        flex-wrap: wrap;
        margin-bottom: 30px;
    }

    .location-icon {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-middle {
        margin-top: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(194, 165, 80, 0.2);
    }

    .footer-bottom {
        padding: 20px 0;
        margin-top: 0;
        background: transparent; 
    }

    .footer-bottom-content {
        /* display: column; */
        gap: 15px;
        padding-bottom: 20px;
    }

    .footer-links {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap; /* Allow links to wrap if needed */
        justify-content: center; /* Center the links */
    }

    .copyright {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .icon_text h3 {
        font-size: 22px;
    }

    .icon_text p {
        font-size: 18px;
    }
    /* Keep divider visible if you want */
    .divider {
        color: #C2A550;
        margin: 0 10px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 767px) {
    footer {
        height: auto;
        min-height: 0;
    }

    .footer-content {
        padding: 30px 15px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .location-icon {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-circle {
        min-width: 60px;
        height: 60px;
        padding-top: 0px;
    }

    .icon-circle img {
        width: 50px;
        height: 50px;
    }

    .icon_text h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .icon_text p {
        font-size: 16px;
        text-align: center;
    }

    .footer-middle {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-top: 0;
        padding: 30px 0;
    }

    .developed-by {
        align-items: center;
    }

    .developed-by span {
        font-size: 16px;
    }

    .developed-by img {
        height: auto;
        width: 180px;
    }

    .footer-social {
        flex-direction: column;
        gap: 15px;
    }

    .footer-connect {
        font-size: 16px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links a {
        font-size: 14px;
    }

    .divider {
        display: none;
    }

    .copyright {
        font-size: 14px;
    }
}

/* Small Mobile Screens */
@media screen and (max-width: 374px) {
    .footer-content {
        padding: 20px 10px;
    }

    .icon_text h3 {
        font-size: 16px;
    }

    .icon_text p {
        font-size: 14px;
    }

    .footer-email {
        font-size: 14px;
    }

    .developed-by span {
        font-size: 14px;
    }

    .footer-connect {
        font-size: 14px;
    }

    .footer-links a,
    .copyright {
        font-size: 12px;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    footer {
        padding-bottom: env(safe-area-inset-bottom);
    }
}
/* Updated Footer Social Section */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.social-section {
    display: flex;
    gap: 10px;
}

.footer-connect {
    color: #C2A550;
    font-size: 20px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* For delivery icons, make them slightly larger */
.social-icons a[href*="grab.com"] img,
.social-icons a[href*="foodpanda.sg"] img {
    width: 24px;
    height: 24px;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
    .footer-social {
        align-items: center;
    }
    
    .social-section {
        align-items: center;
    }
}

.icon_text p {
    line-height: 1.2;
}

.icon_text br {
        display: block;
        margin-top: 2px;
}


