@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --text-dark: #171717;
  --text-light: #525252;
  --extra-light: #a3a3a3;
  --white: #ffffff;
  --max-width: 1200px;
  --header-font: "Merriweather", serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__header {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.section__description {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--text-dark);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--text-light);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}

.header {
  min-height: 600px;
  background-image: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)),
    url("assets/land.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  animation: pulseBrightness 3s ease-in-out infinite;
  /* animation added */
}

@keyframes pulseBrightness {
  0% {
    filter: brightness(0.9);
  }

  50% {
    filter: brightness(1.2);
  }

  100% {
    filter: brightness(0.9);
  }
}

nav {
  position: fixed;
  isolation: isolate;
  top: 0;
  width: 100%;
  max-width: var(--max-width);
  margin: auto;
  z-index: 9;
}

.nav__header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background-color: var(--text-dark);
}

.nav__logo img {
  max-width: 70px;
}

.nav__menu__btn {
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
}

.nav__links {
  list-style: none;
  position: absolute;
  width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  background-color: var(--text-dark);
  transform: translateY(-100%);
  transition: 0.5s;
  z-index: -1;
}

.nav__links.open {
  transform: translateY(0);
}

.nav__links .nav__logo {
  display: none;
}

.nav__links a {
  padding-bottom: 5px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 2px solid transparent;
}

.nav__links a:hover {
  border-color: var(--white);
}

.hero {
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Headline */
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #e9e6e6;
  padding-top: 5rem;
  margin-bottom: 2rem;
  text-transform: capitalize;

  /* Readability boost */
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.45),
    0 6px 20px rgba(0, 0, 0, 0.35);
}

.hero-title span {
  color: #f7ba06;
}

.hero-description {
  max-width: 650px;
  margin: 0 auto 2.4rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dfd8d8;

  /* Softer shadow for body text */
  text-shadow:
    0 1px 4px rgba(0, 0, 0, 0.45);
}

/* Buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.85rem 1.8rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #f7ba06;
  color: #fff;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Hover = premium glass pop */
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

/* Subtle attention animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.6);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(245, 197, 24, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0);
  }
}


.about__container .section__description {
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.about__container img {
  max-width: 170px;
  margin-inline: auto;
}

.service {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("assets/team.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__container .section__header {
  color: var(--white);
}

.service__container .section__description {
  max-width: 600px;
  margin-inline: auto;
  color: var(--extra-light);
}

.service__grid {
  margin-top: 4rem;
  display: grid;
  gap: 2rem;
}

.service__card {
  text-align: center;
}

.service__card h4 {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 400;
  font-family: var(--header-font);
  color: var(--white);
}

.service__card h4::after {
  position: absolute;
  content: "~";
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  line-height: 0;
}

.service__card p {
  color: var(--extra-light);
  line-height: 1.75rem;
}

.gallery__grid {
  margin-block: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.gallery__grid img {
  transition: 0.3s;
}

.gallery__grid:hover img:not(:hover) {
  opacity: 0.5;
}

.gallery__btn {
  text-align: center;
}
.card-wrapper {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-card {
  max-width: 380px;
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(243, 159, 2, 0.377);
  text-align: center;
}

.photo-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}

.photo-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.book-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.book-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.instagram__container {
  overflow: hidden;
}

.instagram__flex {
  margin-top: 2rem;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 1rem;

  animation: scroll 45s linear infinite;
}

.instagram__flex img {
  max-width: 135px;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.footer__container {
  display: grid;
  gap: 4rem 0;
  align-items: center;
}

.footer__col {
  padding-inline: 2rem;
}

.footer__container img {
  max-width: 170px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__socials a {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.footer__socials a:hover {
  color: var(--text-light);
}

.footer__links {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer__links a {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.footer__links a:hover {
  color: var(--text-light);
}

.footer__col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
}

.footer__col p {
  color: var(--text-light);
  line-height: 1.75rem;
  text-align: center;
}

.footer__bar {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--extra-light);
  background-color: var(--text-dark);
  text-align: center;
}

.contact-widget {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
  font-family: Arial, sans-serif;
}

/* Hidden checkbox */
#contact-toggle {
  display: none;
}

/* Vertical tab */
.contact-tab {
  background: #111111;
  color: #fff;
  padding: 17px 10px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: bold;
  border-radius: 8px 0 0 8px;

  /* Animation magic */
  animation: pulseGlow 2.5s infinite;
  transition: all 0.3s ease;
}

/* Hover = more intent */
.contact-tab:hover {
  background: #fab804;
  box-shadow: -6px 0 18px rgba(243, 180, 5, 0.986);
  transform: translateX(-4px);
}

/* Pulse animation */
@keyframes pulseGlow {
  0% {
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
  }

  50% {
    box-shadow: -6px 0 16px rgba(248, 163, 4, 0.45);
  }

  100% {
    box-shadow: -2px 0 6px rgba(0, 0, 0, 0.4);
  }
}

/* Panel */
.contact-panel {
  position: absolute;
  right: -260px;
  top: 0;
  width: 260px;
  background: #fcf2f2;
  border-radius: 8px 0 0 8px;
  padding: 16px;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15);
  transition: right 0.3s ease;
}

/* Expand on click */
#contact-toggle:checked~.contact-panel {
  right: 40px;
}

.contact-panel h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.contact-panel p {
  margin: 8px 0;
  color: #222324;
  font-size: 14px;
}

.contact-panel a {
  color: #222324;
  text-decoration: none;
}

.contact-panel a:hover {
  text-decoration: underline;
}
.booking-section {
  padding: 60px 20px;
  background: #f7f7f7;
}

.booking-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* Certification */
.certification {
  background: #000;
  color: #fff;
  padding: 40px;
  border-radius: 16px;
}

.certification h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #f7ba06;
}

.trust-item {
  display: flex;
  gap: 16px;
  margin-bottom: 25px;
}

.trust-item .icon {
  font-size: 28px;
  color: #f7ba06;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.trust-text p {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* Booking Form */
.booking-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-form h2 {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.booking-form p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.form-group input:focus {
  outline: none;
  border-color: #000;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.submit-btn:hover {
  background: #222;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-container {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .certification {
    order: 1;
  }

  .booking-form {
    order: 2;
  }
}
@media (width > 540px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service__grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-area: 1/1/2/3;
  }

  .footer__col:nth-child(3) {
    border-left: 2px solid var(--text-dark);
  }
}

@media (width > 768px) {
  .header {
    min-height: 650px;
  }

  nav {
    padding: 2rem 1rem;
    position: static;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav__header {
    display: none;
  }

  .nav__links {
    padding: 0;
    width: 100%;
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
  }

  .nav__links .nav__logo {
    display: block;
  }

  .nav__links .nav__logo img {
    max-width: 150px;
  }

.hero-title{
    padding-top: 0;
}
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__container {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__col:nth-child(1) {
    grid-area: 1/2/2/3;
    border-left: 2px solid var(--text-dark);
    border-right: 2px solid var(--text-dark);
  }

  .footer__col:nth-child(3) {
    border: none;
  }
}

@media (width > 1024px) {
  .header {
    min-height: 700px;
  }

  .portfolio__grid {
    gap: 2rem;
  }
}
