@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #0e0e11;
  color: #f5f5f5;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(14, 14, 17, 0.85);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #ddd;
  font-weight: 500;
}

.nav a:hover {
  color: #ff7a18;
}

/* push hero below fixed header */
.hero {
  padding-top: 100px;
}


/* HERO */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(14, 14, 17, 0.6), rgba(14, 14, 17, 0.9)),
    url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 80px;
}

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

.hero h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #ff7a18;
}

.hero p {
  font-size: 20px;
  color: #d0d0d0;
  margin-bottom: 35px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 16px 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 122, 24, 0.4);
}

/* ABOUT */
.about {
  text-align: center;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  margin-top: 60px;
  margin-bottom: 10px;
  color: #ff7a18;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.about-tagline {
  font-size: 20px;
  font-weight: 600;
  color: #ffb347;
  margin-bottom: 40px;
}

.about-content {
  max-width: 800px;
  margin: auto;
}

.about-content p {
  font-size: 18px;
  color: #bcbcbc;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* DESTINATIONS */
.menu-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #ff7a18;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 3px;
}

.menu {
  padding: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card {
  position: relative;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

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

.card-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
}

.card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p {
  font-size: 15px;
  color: #ddd;
}

.card span {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: #ffb347;
}

/* CONTACT */
.contact {
  background: #0e0e11;
  padding: 120px 80px;
}

.contact h2 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact>p {
  max-width: 700px;
  color: #bcbcbc;
  margin-bottom: 60px;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* FORM CARD */
.contact-form {
  background: #15151a;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 18px;
  border-radius: 12px;
  border: 1px solid #2a2a2f;
  background: #0e0e11;
  color: #f5f5f5;
  font-size: 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #777;
}

.contact-form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff7a18, #ffb347);
  border: none;
  border-radius: 14px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 122, 24, 0.4);
}

/* INFO CARD */
.contact-info {
  background: #15151a;
  padding: 40px;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-info h3 {
  margin-top: 20px;
  color: #ff7a18;
  font-size: 18px;
}

.contact-info p {
  color: #d0d0d0;
  margin-top: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
}


/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  background: #09090b;
  color: #888;
}