@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.woff2') format('woff2'),
       url('../fonts/Roboto-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
       url('../fonts/PlayfairDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #080602;
  color:#fff;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

.navbar-dark .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: #f8f9fa;
  margin-left: 1rem;
}
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ccc;
  text-decoration: underline;
}

/* Hero section with background */

.hero {
  position: relative;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center center;
  color: white;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 1536px; /* you can adjust height if needed */
}


.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.fade-in {
  animation: fadeIn 2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section {
  padding: 60px 20px;
}

.footer {
  background-color: #080602;
  text-align: center;
  textcolor:#fff
  padding: 20px;
}


/* Added to limit website width */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Hero image wrapper */
.hero-image {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    display: block;
    height: auto;
}

