
html, body {
  padding: 0px;
    margin: 0px;
    font-family: 'Dolce Vita', sans-serif;
}




/* Set navbar background color and font styles */
.bg-black {
  background-color: #000;
}

.navbar-brand {
  font-size: 1.5rem;
  font-family: 'Arial', sans-serif;
  color: #fff !important;
}

.nav-link {
  color: #fff !important;
}

.search-bar {
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 0.5rem;
}

.search-bar::placeholder {
  color: #bbb;
}

.logo-font {
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
}

.bimg{
  width: 150px;
}

.form-control{
  border: 2px solid black;
}

/* Section title styling */
.text-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}

/* Description text styling */
.text-description {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Button styling */
.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}




.grid-container {
    display: grid;
    grid-template-rows: 1fr auto;
    min-height: 10vh;

}

.footer {
    background-color: #000;
    width: 100%;
}

@font-face {
    font-family: 'Dolce Vita';
    src: url('./fonts/Dolce Vita Heavy Bold.ttf') format('woff2'),
         url('./fonts/Dolce Vita Light.ttf') format('woff'),
         url('./fonts/Dolce Vita.ttf') format('truetype');

}

.text-title{

    font-family: 'Dolce Vita', sans-serif;
    text-align: justify;
    line-height: 1.5;
}

.animated-btn {
    padding: 20px;
    border-radius: 0px;
    color: #000;
    border: 1px solid black;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
}

/* Styling the span inside the button */
.animated-btn span {
    position: relative;
    z-index: 1; /* Ensure text stays above the fill effect */
    transition: color 0.4s ease;
}

/* Pseudo-element for the fill effect */
.animated-btn::before {
    content: "";
    position: absolute;
    top: 100%; /* Start from below the button */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    transition: top 0.4s ease; /* Smooth animation */
    z-index: 0; /* Keep it below the text */
}

/* Hover effect: bring fill up and change text color */
.animated-btn:hover::before {
    top: 0; /* Move the fill to cover the button */
}

.animated-btn:hover span {
    color: white; /* Change text color to white on hover */
}

/* Set the slideshow image to be responsive and styled */
.slideshow {
    width: 100%; /* Full width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Block element */
    opacity: 1; /* Fully visible */
    transition: opacity 0.5s ease; /* Smooth fade transition */
}
