@font-face {
  font-family: 'Vogue';
  src: url('fonts/vogue.ttf') format('truetype');
}

body {
  margin: 0;
  font-family: 'Vogue', serif;
  background: #fff;
  color: #000;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 70px;
}

.logo {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin-right: 15px;
}

.nav-links li {
  margin: 0 12px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: black;
  color: lightpink;
  padding: 5px 10px;
}

.hero {
  background-image: url('images/miami1.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  padding: 0 40px;
}

.hero-text {
  max-width: 350px;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  animation: fadeIn 2s ease-in;
  margin-top: 75px;
}

.hero-text em {
  display: block;
  font-style: italic;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.about, .stats, .gallery, .instagram {
  padding: 60px 40px;
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.stats {
  background-color: #f2f2f2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 20px auto 0;
}

.stat {
  border: 2px solid lightpink;
  padding: 20px;
  font-weight: bold;
  background-color: white;
}

.stat span {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  color: #333;
}

.gallery .slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  justify-content: center;
  padding: 20px 0;
}

.gallery img {
  border: 3px solid lightpink;
  max-height: 400px;
  height: auto;
  max-width: 100%;
}

.instagram {
  background-color: #f2f2f2;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: white;
  font-size: 0.9rem;
}
