/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body */
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
	display: flex;
    background-color: #333;
    color: white;
    justify-content: center; /* center the group */
    align-items: center;
	padding: 15px 30px;
	flex-wrap: wrap;
    gap: 20px; /* space between logo and menu */
}


header .logo h1 {
	margin:0;
	line-height: 1;
    font-size: 1.8rem;
}

header nav ul {
	display: flex;
    list-style: none;
    gap: 20px;
	margin: 0;
	padding:0;
	align-items: center;
}

header nav ul li a,
header nav ul li .glf-button {
	display: flex;
	align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('crunchy-sushi.jpeg'); /* path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4); /* dark overlay for readability */
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Section */
.section {
    padding: 60px 20px;
    text-align: center;
}

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

/* Target only the Catering Section */
#catering {
    background-color: orange; /* matches main white background */
    padding: 60px 20px;        /* optional spacing */
}

.menu-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px;
    text-align: center;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 1rem;
    color: #555;
}

footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  font-size: 0.9rem;
}

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

.footer-col h4 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f2f2f2;
}

.footer-col p,
.footer-col a {
  color: #ddd;
  text-decoration: none;
  margin: 5px 0;
  display: block;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 5px 0;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #555;
  padding-top: 15px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #bbb;
}

.payment-logos {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}

.payment-logos img {
  height: 40px;   /* adjust size */
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  filter: none;
  transition: transform 0.2s ease;
}

.payment-logos img:hover {
  transform: scale(1.1);
  filter: none; /* show original colors on hover */
}

/* Desktop only (>= 1024px) */
@media (min-width: 1024px) {
    header {
        gap: 250px; /* more space between logo & menu */
    }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-col ul li {
    display: inline-block;
    margin: 0 10px;
  }
}

/* Responsive on mobile */
@media (max-width: 600px) {
  .payment-logos img {
    height: 30px; /* smaller on phones */
  }
}

/* ---------------- */
/* Responsive Rules */
/* ---------------- */

/* Tablets & smaller screens */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .menu-items {
        gap: 15px;
    }

    .menu-item {
        width: 45%; /* two per row */
    }
}

/* Phones */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header nav ul {
        flex-direction: column;
        margin-top: 15px;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .menu-item {
        width: 100%; /* one per row */
    }
}