
html, body {

    overflow-x: hidden; 
    

    max-width: 100%;
}



/* --- Body Styles --- */
body {
  font-size: 16px;
  font-family: 'Oxygen', sans-serif;
  background-color: #61122f;
  color: #fff;
}

/* --- Navbar Background --- */
#header-nav {
  background-color: #f6b319;
  border-radius: 0;
  border: 0;
}

/* --- Brand --- */
.navbar-brand {
  padding-top: 25px;
  display: inline-block;
}

.navbar-brand h1 {
  font-family: 'Lora', serif;
  color: #557c3e;
  font-size: 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 1px 1px 1px #fff;
  margin-top: 0;
  margin-bottom: 0;
  line-height: .75;
}

.navbar-brand a:hover,
.navbar-brand a:focus {
  text-decoration: none;
}

.navbar-brand span {
  color: #000;
  text-transform: uppercase;
  font-size: 0.9em;
  margin-top: 17px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}

/* --- Collapsible Navigation Styling --- */
#nav-list {
  margin-bottom: 0;
}

#nav-list a {
  color: #951C49;
  text-align: center;
}

#nav-list a:hover {
  background: #E7E7E7;
}

#nav-list span {
  font-size: 1.8em;
}

/* --- Phone (Desktop/Larger Screens) --- */
#phone {
  margin-top: 5px;
  text-align: right;
  padding-right: 15px;
}

#phone > a {
  display: block;
  color: #951C49;
}

#phone > div {
  color: #fff;
  text-align: right;
  padding-right: 15px;
}

/* --- Collapsed Mobile Menu Toggle Button & Icon Bars --- */
.navbar-header button.navbar-toggle {
  border: 1px solid #61122f;
  /* Reduce spacing for smaller screens using negative margin */
  margin-top: 20px;
}

/* Style the icon bars inside the toggle button */
.navbar-header .icon-bar {
  background-color: #61122f;
}

/* Clear float issue causing yellow bar height collapse */
.navbar-header {
  clear: both;
}

/* --- Jumbotron (Responsive) --- */
/* Common jumbotron styles shared by all screen sizes */
.container.jumbotron {
  border: 2px solid #ccc;
  box-shadow: 0 0 20px #999;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .container.jumbotron {
    background: url('../images/restaurant_992.jpg') no-repeat center center;
    background-size: cover;
    height: 300px;
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .container.jumbotron {
    background: url('../images/restaurant_1200.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
  }
}

/* Extra small devices (<768px) - Jumbotron adjustments */
@media (max-width: 767px) {
  .container.jumbotron {
    margin: 0;
    padding: 0;
    box-shadow: 0 0 20px #999;
  }

  /* Note: The global img fix handles the image scaling, 
     but this media query selector is fine. */
  .jumbotron img {
    width: 100%;
    height: auto;
  }
}

/* --- Home Page Tiles (Menu, Specials, Map) --- */
#menu-tile,
#specials-tile,
#map-tile {
  height: 250px;
  width: 100%; /* 100% of their Bootstrap column */
  margin-bottom: 15px;
  position: relative;
  border: 2px solid maroon;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  text-align: center;
}

/* Hover effect */
#menu-tile:hover,
#specials-tile:hover,
#map-tile:hover {
  box-shadow: 0 0 10px #999;
}

/* Optional: style the span inside each tile */
#menu-tile span,
#specials-tile span,
#map-tile span {
  position: absolute;
  bottom: 0;
  right: 0;
  /* Width added to ensure text-align: center works across the whole tile */
  width: 100%; 
  background: rgba(0, 0, 0, 0.8); /* Corrected rgba syntax */
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 1.6em;
}

#menu-tile {
   background-image: url('../images/download.jpg');
  background-size: cover;
  background-position: center;
}

#specials-tile {
background-image: url('../images/2025-06-12.jpg');
  background-size: cover;
  background-position: center;
}

#map-tile  {
 
  background-size: cover;
  background-position: center;
}

/* --- Footer --- */
.panel-footer {
  background-color: #000; /* Black footer background */
  color: white; /* White text for visibility */
  padding: 30px 0 20px;
  margin-top: 50px;
  border-top: 0;
}

.panel-footer .row {
  margin-bottom: 35px;
}

.panel-footer span {
  font-size: 1.3em;
  color: white;
}

#address p {
  color: lightgreen;
  font-size: 0.9em;
  line-height: 1.8;
}

#testimonials p {
  font-style: italic;
  color: #ddd;
}

#testimonials p:nth-child(2) {
  margin-top: 25px;
}

/* Make <hr> visible on black background */
hr.visible-xs {
  border-top: 1px solid #666;
}

/* --- Extra-small screen styling (mobile-specific) for Footer --- */
@media (max-width: 767px) {
  .panel-footer .row > div {
    text-align: center;
    margin-bottom: 30px;
  }

  .panel-footer .row > div:nth-child(3) {
    margin-bottom: 0;
  }

  hr.visible-xs {
    width: 50%;
    /* Smaller horizontal rule */
    margin: 10px auto;
    /* Center the line */
  }
}

/* --- Menu Categories (Menu Page) --- */


.category-tile {
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
  width: 200px;
  height: 200px;
  margin: 0 auto 15px auto;
}

.category-tile span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  background-color: black;
  color: white;
  opacity: 0.8;
}

.category-tile:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#menu-categories-title + div {
  margin-bottom: 50px;
}



#menu-categories-title + div {
  margin-bottom: 50px;
}

/* --- Mobile Phone Section (#phone-xs) FIXES --- */
@media (max-width: 767px) {
  #phone-xs {
    /* Set background and center text for the container */
    background-color: #61122f;
    padding: 12px;
    text-align: center;
  }

  #phone-xs a {
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: white; /* Link text color */
    background-color: #f6b319; /* Yellow background for the link itself */
    text-decoration: none;
    padding: 10px; /* Padding inside the yellow block */
    margin: 0 auto 4px; /* Center the block and add margin below */
    border: 2px solid white; /* White border for emphasis */
  }

#phone > div {
  color: #61122f;
  text-align: right;
  padding-right: 15px;
}
#phone {
  margin-top: 5px;
  text-align: right;
  padding-right: 15px;
}


}


/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .container.jumbotron {
    background: url('../images/restaurant_992.jpg') no-repeat center center;
    background-size: cover;
    height: 300px; /* Jumbotron ki height */
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .container.jumbotron {
    background: url('../images/restaurant_1200.jpg') no-repeat center center;
    background-size: cover;
    height: 400px; /* Jumbotron ki height */
  }
}
