body {
  background-color: rgb(246, 246, 246);
}

h1, h2, .navbar-brand {
  font-family: 'Segoe UI', 'Arial', sans-serif;
}

/* Fullscreen hero */
.hero {
  position: relative;
  height: calc(100vh - 60px);
  min-height: calc(100vh - 60px);
  background-image: url('media/dubai-skyline.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,55,70,0.45), rgba(21,55,70,0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.5rem;
  z-index: 2;
  padding: 1.5rem 1rem 0.5rem 1rem;
}

@media (max-width: 768px) {
  .hero-bottom {
    bottom: 0.5rem;
    padding: 1rem 0.5rem 0.5rem 0.5rem;
  }
}

/* Sentence reveal animation */
.sentence {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--anim-time, 1000ms) ease, transform var(--anim-time, 1000ms) ease;
}
.sentence.visible {
  opacity: 1;
  transform: translateY(0);
}
.last-sentence {
  color: rgb(216, 119, 25);
  font-weight: 600;
}

.btn-primary {
  border: none;
}

.contact-card {
  background: rgba(255,255,255,0.95);
  border-radius: 12px;
  margin-top: 1rem;
}

.contact-card .form-control {
  padding: 0.9rem 0.75rem;
  border-radius: 8px;
}

.contact-card #submit-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 70px);
    min-height: calc(100vh - 70px);
  }
  .hero-content {
    padding: 2rem 0.5rem;
  }
  .display-4 {
    font-size: 2.1rem;
    line-height: 1.15;
  }
  .lead {
    font-size: 0.95rem;
  }
}
/* Responsive menu styles */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 992px) {
  .main-navigation ul.menu {
    display: none;
    flex-direction: column;
    background: rgb(21, 55, 70);
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .main-navigation ul.menu.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 101;
  }
  .navigation-top {
    position: relative;
  }
}


/*     NAVIGATION BAR      */
.navigation-top {
    background-color: rgb(21, 55, 70);
    padding: 15px;
    border: none;
}

#top-menu{
  padding:0;
  margin:0
}

.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}

#menu-item-65-es{
  margin-left: 100px;
  margin-right: 100px;
}

.menu li a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: 'Playfair Display';
    padding: 0.5em;
    font-weight: 400;
    display: block;
    cursor: pointer;
}

.menu li a:hover{
    color:rgb(216, 119, 25);
    transition: 0.2s;
}

.main-navigation ul {
  text-align: left;
}

.main-navigation a {
    display: block;
    padding: 0.5em 0;
    text-decoration: none;
}

.navigation-top a {
    color: #222;
    font-weight: 600;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.wrap {
  margin-right: auto;
  margin-left: auto;
}

/* Navigation flex layout */
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 1rem;
  position: relative;
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-right {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  .navigation-top {
    min-height: 70px;
    padding: 0;
  }
  .nav-flex {
    min-height: 70px;
    padding: 0 0.5rem;
  }
  .nav-left {
    height: 70px;
    align-items: center;
  }
  .nav-right {
    height: 70px;
    align-items: center;
  }
  .menu-toggle {
    display: block;
    position: static;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    font-size: 2.2rem;
    height: 70px;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
  }
  .main-navigation ul.menu {
    display: none;
    flex-direction: column;
    background: rgb(21, 55, 70);
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  .main-navigation ul.menu.open {
    display: flex;
  }
}
