/* Base Reset & Body */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

/* Universal responsive image styling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* === Sidebar Menu === */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: #333;
  overflow-x: hidden;
  transition: 0.4s ease;
  padding-top: 60px;
}

.sidebar a {
  padding: 12px 30px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  display: block;
  transition: 0.3s ease;
  animation: fadeSlide 0.5s ease forwards;
  opacity: 0;
}

.sidebar a:hover {
  background-color: orange;
  color: #000;
}

.sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
}

/* Animate Links */
.sidebar a:nth-child(2) { animation-delay: 0.1s; }
.sidebar a:nth-child(3) { animation-delay: 0.2s; }
.sidebar a:nth-child(4) { animation-delay: 0.3s; }
.sidebar a:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Sidebar Toggle Button === */
.openbtn {
  font-size: 18px;
  cursor: pointer;
  background-color: #e6a263;
  color: white;
  padding: 10px 18px;
  border: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2100;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.openbtn:hover {
  background-color: #a44e04;
}

/* Always show the button */
@media (min-width: 768px) {
  .openbtn {
    display: block;
  }
}


  nav {
    display: none;
  }


.sidebar a:nth-child(2) { animation-delay: 0.1s; }
.sidebar a:nth-child(3) { animation-delay: 0.2s; }
.sidebar a:nth-child(4) { animation-delay: 0.3s; }
.sidebar a:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Header and Navigation === */
header {
  background-color: #be6007;
  color: white;
  padding: 20px 0;
  text-align: center;
}

nav {
  background-color: #333;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-transform: uppercase;
}

nav a:hover {
  background-color: #575757;
}

/* === Hero Section === */
.hero {
  background: url('https://images.unsplash.com/photo-1509042239860-f550ce710b93?auto=format&fit=crop&w=1350&q=80') center/cover no-repeat;
  height: 300px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 8px;
}

/* === Sections === */
.section {
  padding: 40px 20px;
  margin: auto;
}

section {
  width: 80%;
  margin: 80px auto;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.item {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.item h3 {
  margin-top: 0;
}

/* === Grid Layouts === */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.responsive-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

ul {
  padding-left: 20px;
  list-style-position: outside;
}

/* === Gallery === */
.d {
  text-align: center;
  padding: 30px 0;
  font-family: cursive;
}

.d h2 {
  color: #351212;
  font-size: 40px;
}

.gal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 20px;
}

.gal img {
  border-radius: 1em;
  width: 300px;
  height: 200px;
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
}

.gal img:hover {
  transform: scale(1.1);
}

/* === Event / Order Section === */
.title {
  text-align: center;
  font-size: 4vmin;
  color: rgb(78, 78, 158);
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.col {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.col img {
  width: 300px;
  height: 200px;
  background-color: #ec7b09;
}

.events .row {
  margin-top: 50px;
}

h4 {
  font-size: 3vmin;
  color: #515b91;
  margin: 20px auto;
}

.events .ctn {
  margin-top: 10px;
  padding: 8px 15px;
  background: #fc036b;
  border-radius: 30px;
  color: whitesmoke;
}

/* === Event Section === */
.events-section {
  padding: 60px 20px;
  background-color: #fff8f0;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.events-header {
  text-align: center;
  margin-bottom: 40px;
}

.events-header h2 {
  font-size: 2.5em;
  color: #be6007;
}

.events-header p {
  font-size: 1.1em;
  color: #555;
  margin-top: 10px;
}

.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.event-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 300px;
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.event-content {
  padding: 20px;
}

.event-content h3 {
  margin: 0 0 10px;
  color: #be6007;
}

.event-content p {
  font-size: 15px;
  color: #555;
}

/* === Responsive === */
@media (max-width: 768px) {
  .event-list {
    flex-direction: column;
    align-items: center;
  }

  .event-card {
    width: 90%;
  }
}


/* === Contact Section === */
.contact-section {
  background-color: #fff8f0;
  padding: 60px 20px;
  color: #333;
  font-family: 'Segoe UI', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2 {
  color: #be6007;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.contact-info i {
  color: #be6007;
  margin-right: 10px;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #be6007;
  transition: transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ff6600;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #be6007;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.contact-form button {
  background-color: #be6007;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #a44e04;
}

/* Map section */
.map {
  margin-top: 40px;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .map iframe {
    height: 250px;
  }
}


/* === Footer === */
footer {
  background: black;
  padding-top: 50px;
  color: white;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.footer-content {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.footer-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: white;
}

.footer-content p {
  margin: 5px auto;
}

.list {
  list-style: none;
  padding: 0;
  color: #f4f5f7;
}

.list li {
  padding: 7px 0;
  position: relative;
}

.list li a {
  color: white;
}

.list li::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: orange;
  transition: width 0.3s;
}

.list li:hover::before {
  width: 70px;
}

.social-icons {
  list-style: none;
  padding: 0;
  text-align: center;
}

.social-icons li {
  display: inline-block;
  padding: 5px;
}

.social-icons i {
  font-size: 25px;
  color: white;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: orange;
}

.bottom-bar {
  background: orange;
  text-align: center;
  padding: 10px 0;
}

.bottom-bar p {
  color: black;
  margin: 0;
  font-size: 16px;
}

/* === Mobile Adjustments === */
@media (max-width: 768px) {
  .grid,
  .responsive-grid {
    grid-template-columns: 1fr;
  }

  section h2 {
    font-size: 1.5rem;
    text-align: center;
  }

.openbtn{
  text-align: left;
  margin-left: -8%;
}

  section p,
  section li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .highlight ul {
    padding-left: 15px;
  }

  .hero {
    height: 200px;
  }

  nav a {
    flex: 1 0 100%;
    text-align: center;
  }

  .gal img {
    width: 100%;
    height: auto;
  }

  .col img {
    width: 100%;
    height: auto;
  }
}
