/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Body Background */
body {
  background: linear-gradient(to right, #fff9b0, #ffd6d6);
  color: #333;
}

/* Navigation Bar */
header {
  background: #ff6f61;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}

nav ul li {
  margin: 0 25px;
}

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}

.menu-icon {
  font-size: 22px;
  cursor: pointer;
  color: #000;
}

/* Section 1: Hero */
.hero {
  display: flex;
  height: 100vh;
}

.hero-left {
  flex: 1;
  background: linear-gradient(to right, #fff9b0, #ffd6d6);
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-left h1 {
  font-size: 56px;
  font-weight: bold;
  margin-bottom: 25px;
}

.hero-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.btn {
  display: block;
  width: 220px;
  text-align: center;
  padding: 15px 0;
  background: #ff6f61;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}

.hero-right {
  flex: 1;
  background: url("burger.jpg") no-repeat center center/cover
}

/* Section 2 */
.second {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  gap: 60px;
}

/* Grid layout */
.grid-images {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 20px;
  flex: 1;
  max-height: 500px; /* control overall grid height */
}

/* Left column with two stacked images */
.grid-images .col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.grid-images .col img {
  width: 100%;
  height: 240px;          /* smaller fixed height */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.grid-images .col img:hover {
  transform: scale(1.05); /* zoom effect */
}

/* Right column with one tall image */
.grid-images .tall img {
  width: 100%;
  height: 500px;          /* equal to left stack (240+240+gap) */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.grid-images .tall img:hover {
  transform: scale(1.05);
}

.text-box {
  flex: 1;
  background: #ff6f61;
  padding: 60px;
  color: #000;
}

.text-box .small-text {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}

.text-box h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.click-link {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.click-link:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .second {
    flex-direction: column;
    padding: 40px 20px;
  }

  .grid-images {
    grid-template-columns: 1fr;
  }

  .text-box {
    width: 100%;
    text-align: center;
  }
}