/* ========================================
   GENERAL RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #1c1c1c;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}


/* ========================================
   REUSABLE STYLES
======================================== */

.section-label {
  color: #ef9700;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  font-size: 36px;
  line-height: 1.2;
  color: #181818;
}

.primary-button,
.restaurant-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffb431, #ef9200);
  color: #121212;
  font-weight: 700;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-button:hover,
.restaurant-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(239, 146, 0, 0.35);
}


/* ========================================
   NAVIGATION
======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background: rgba(8, 8, 8, 0.95);
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-container {
  width: min(1120px, 90%);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #f4a000;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 24px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f4a000;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 0;
  height: 2px;
  background: #f4a000;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}


/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45)),
    url("images/hero-durban.jpg") center center / cover no-repeat;
  color: #ffffff;
}

.hero-overlay {
  min-height: 100vh;
  padding: 110px 20px 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-content {
  max-width: 760px;
}

.hero-label {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-label::before,
.hero-label::after {
  content: "•";
  color: #f4a000;
  margin: 0 12px;
}

.hero h1 {
  font-size: clamp(58px, 8vw, 92px);
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 22px;
}

.hero h1 span {
  display: block;
  color: #f4a000;
}

.hero-description {
  max-width: 660px;
  margin: 0 auto 28px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}

.primary-button {
  padding: 14px 34px;
  font-size: 15px;
}

.scroll-down {
  position: absolute;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 12px;
}

.mouse-icon {
  width: 22px;
  height: 35px;
  border: 2px solid #ffffff;
  border-radius: 16px;
  position: relative;
}

.mouse-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: #ffffff;
  border-radius: 10px;
  transform: translateX(-50%);
  animation: mouse-scroll 1.5s infinite;
}

@keyframes mouse-scroll {
  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}


/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
  padding: 76px 20px;
  background: #ffffff;
}

.about-container {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image img {
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-content h2 {
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 22px;
  color: #171717;
}

.about-content p:not(.section-label) {
  font-size: 14px;
  color: #444444;
  margin-bottom: 18px;
}


/* ========================================
   RESTAURANTS SECTION
======================================== */

.restaurants-section {
  padding: 70px 20px 80px;
  background: #faf8f4;
}

.restaurant-grid {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.restaurant-card {
  background: #ffffff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.restaurant-card > img {
  height: 210px;
  object-fit: cover;
}

.restaurant-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.restaurant-content h3 {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.restaurant-content p {
  font-size: 12px;
  color: #4d4d4d;
  margin-bottom: 15px;
}

.restaurant-content address {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  color: #242424;
  margin-top: auto;
  margin-bottom: 18px;
}

.restaurant-content address span {
  color: #ef9700;
}

.location-link {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #242424;
  transition: color 0.3s ease;
}

.location-link span {
  flex-shrink: 0;
}

.location-link:hover {
  color: #ef9700;
  text-decoration: underline;
}

.restaurant-button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: center;
  color: #ffffff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}


/* ========================================
   DURBAN COLLAGE
======================================== */

.durban-collage-section {
  width: 100%;
  background: #111111;
  overflow: hidden;
}

.durban-collage {
  width: 100%;
  height: 560px;

  display: grid;

  grid-template-columns: 1fr 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;

  grid-template-areas:
    "ushaka feature restaurant"
    "city feature night";
}

/* Shared panel styles */

.collage-panel {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.collage-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* Soft overlay on every image */

.collage-panel::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.3)
    );

  z-index: 1;
  pointer-events: none;

  transition: background 0.4s ease;
}

/* Hover effect */

.collage-panel:hover img {
  transform: scale(1.04);
}

.collage-panel:hover::after {
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.04),
      rgba(0, 0, 0, 0.14)
    );
}

/* Grid placement */

.collage-ushaka {
  grid-area: ushaka;
}

.collage-city-hall {
  grid-area: city;
}

.collage-feature {
  grid-area: feature;
}

.collage-restaurant {
  grid-area: restaurant;
}

.collage-night {
  grid-area: night;
}

/* Individual image positioning */

.collage-ushaka img {
  object-position: center 38%;
}

.collage-city-hall img {
  object-position: center 28%;
}

.collage-feature img {
  object-position: center 52%;
}

.collage-restaurant img {
  object-position: center 50%;
}

.collage-night img {
  object-position: center;
}

/* Stronger overlay for centre image */

.collage-feature-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18),
      rgba(0, 0, 0, 0.4)
    );

  z-index: 2;
}

/* Centre text */

.collage-heading {
  position: absolute;
  inset: 0;

  padding: 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  text-align: center;

  z-index: 3;

  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.6);
}

.collage-scenes {
  color: #f4a000;
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  line-height: 1;
}

.collage-line {
  width: 82px;
  height: 3px;
  margin: 20px 0 22px;

  background: #f4a000;
}

.collage-from {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.collage-heading strong {
  display: block;

  margin-top: 12px;

  font-size: clamp(54px, 5vw, 78px);
  font-weight: 800;
  line-height: 0.95;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 992px) {
  .durban-collage {
    height: 500px;

    grid-template-columns: 0.9fr 1.35fr 0.9fr;
  }

  .collage-scenes {
    font-size: 48px;
  }

  .collage-heading strong {
    font-size: 66px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  .durban-collage {
    height: auto;

    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      420px
      220px
      220px;

    grid-template-areas:
      "feature feature"
      "ushaka restaurant"
      "city night";
  }

  .collage-scenes {
    font-size: 46px;
  }

  .collage-from {
    font-size: 27px;
  }

  .collage-heading strong {
    font-size: 64px;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
  .durban-collage {
    grid-template-columns: 1fr;
    grid-template-rows:
      400px
      220px
      220px
      220px
      220px;

    grid-template-areas:
      "feature"
      "ushaka"
      "restaurant"
      "city"
      "night";
  }

  .collage-heading {
    padding: 18px;
  }

  .collage-scenes {
    font-size: 40px;
  }

  .collage-line {
    width: 70px;
    margin: 16px 0 18px;
  }

  .collage-from {
    font-size: 24px;
  }

  .collage-heading strong {
    font-size: 54px;
  }
}


/* ========================================
   INSTAGRAM GALLERY
======================================== */

.instagram-gallery-section {
  padding: 70px 20px 80px;
  background: #ffffff;
}

.instagram-gallery-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.instagram-gallery-heading h2 {
  margin-bottom: 18px;
  color: #181818;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.2;
}

.gallery-heading-line {
  display: block;
  width: 72px;
  height: 3px;
  margin: 0 auto 18px;
  background: #ef9700;
}

.gallery-introduction {
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.7;
}

/* Embed grid */

.instagram-embed-grid {
  width: min(1220px, 96%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  align-items: start;
}

/* Outer cards */

.instagram-embed-card {
  width: 100%;
  min-width: 0;
  padding: 8px;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  background: #faf8f4;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);

  overflow: hidden;
}

/* Override Instagram's default blockquote dimensions */

.instagram-embed-card .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;

  margin: 0 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

/* Link shown briefly while the media loads */

.instagram-embed-card .instagram-media > a {
  width: 100%;
  min-height: 420px;
  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ef9700;
  background: #ffffff;

  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1100px) {
  .instagram-embed-grid {
    width: min(820px, 96%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-embed-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {
  .instagram-gallery-section {
    padding: 58px 18px 65px;
  }

  .instagram-gallery-heading {
    margin-bottom: 32px;
  }

  .instagram-gallery-heading h2 {
    font-size: 32px;
  }

  .instagram-embed-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .instagram-embed-card:last-child {
    grid-column: auto;
    width: 100%;
  }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {
  .instagram-gallery-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .instagram-gallery-heading {
    padding: 0 8px;
  }

  .instagram-gallery-heading h2 {
    font-size: 29px;
  }

  .gallery-introduction {
    font-size: 13px;
  }

  .instagram-embed-card {
    padding: 5px;
  }
}



/* ========================================
   FOOTER
======================================== */

.footer {
  background:
    linear-gradient(rgba(6, 6, 6, 0.86), rgba(6, 6, 6, 0.94)),
    url("images/durban-footer.jpg") center center / cover no-repeat;
  color: #ffffff;
}

.footer-overlay {
  padding: 42px 20px 16px;
}

.footer-container {
  width: min(1120px, 90%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
}

.footer-column h3 {
  margin-bottom: 14px;

  color: #f4a000;
  font-size: 15px;
}

.footer-column p,
.footer-column li {
  color: #e7e7e7;
  font-size: 12px;
  line-height: 1.45;
}

.footer-column p {
  margin-bottom: 12px;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;

  transition: color 0.3s ease;
}

.footer-column li span {
  flex-shrink: 0;
  color: #f4a000;
}

.footer-column a:hover {
  color: #f4a000;
}

.footer-column p a {
  color: #f4a000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  width: min(1120px, 90%);
  margin: 30px auto 0;
  padding-top: 16px;

  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.footer-bottom p {
  color: #d8d8d8;
  font-size: 11px;
}

/* ========================================
   TABLET RESPONSIVE DESIGN
======================================== */

@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .about-container {
    gap: 38px;
  }

  .about-image img {
    height: 460px;
  }

  .about-content h2 {
    font-size: 36px;
  }

  .restaurant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    gap: 35px;
  }

  .durban-collage {
  min-height: 680px;

  grid-template-columns: 0.85fr 1.3fr 1fr;
  grid-template-rows: 220px 460px;
}

.collage-heading {
  padding: 20px;
}

.collage-line {
  margin: 20px 0;
}
}


/* ========================================
   MOBILE RESPONSIVE DESIGN
======================================== */

@media (max-width: 768px) {
  .navbar {
    position: absolute;
    height: auto;
    padding: 14px 0;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 12px;
    padding: 4px 0;
  }

  .nav-links a::after {
    bottom: -3px;
  }

  .hero-overlay {
    padding-top: 145px;
  }

  .hero-label {
    font-size: 13px;
  }

  .hero-label::before,
  .hero-label::after {
    display: none;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-description {
    font-size: 14px;
  }

  .about-section,
  .restaurants-section,
  .gallery-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image img {
    height: 420px;
  }

  .about-content h2 {
    font-size: 34px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .restaurant-grid {
    grid-template-columns: 1fr;
  }

  .restaurant-card > img {
    height: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img {
    height: 270px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-column li a {
    justify-content: center;
  }

  .durban-collage {
  min-height: auto;
  grid-template-columns: 1fr 1fr;
  grid-template-rows:
    230px
    430px
    230px
    300px;

  grid-template-areas:
    "ushaka skyline"
    "feature feature"
    "city night"
    "beachfront beachfront";
}

.collage-heading strong {
  font-size: 66px;
}

.collage-scenes {
  font-size: 48px;
}

.collage-from {
  font-size: 30px;
}
}


/* ========================================
   SMALL MOBILE DEVICES
======================================== */

@media (max-width: 480px) {
  .logo {
    font-size: 20px;
  }

  .nav-links {
    gap: 10px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-description {
    font-size: 13px;
  }

  .primary-button {
    padding: 12px 24px;
    font-size: 13px;
  }

  .about-image img {
    height: 340px;
  }

  .about-content h2 {
    font-size: 29px;
  }

  .about-content p:not(.section-label) {
    font-size: 13px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .restaurant-card > img {
    height: 225px;
  }

  .gallery-card img {
    height: 230px;
  }

  .durban-collage {
  grid-template-columns: 1fr;
  grid-template-rows:
    220px
    220px
    420px
    240px
    240px
    300px;

  grid-template-areas:
    "ushaka"
    "skyline"
    "feature"
    "city"
    "night"
    "beachfront";
}

.collage-scenes {
  font-size: 42px;
}

.collage-from {
  font-size: 26px;
}

.collage-heading strong {
  font-size: 58px;
}

.collage-line {
  width: 75px;
  margin: 18px 0 22px;
}
}