
/* ================== Carousel ================== */
.carousel-img {
    height: 520px;
    object-fit: cover; /* crops nicely without stretching */
}

.carousel {
    max-width: 1200px;
    margin: 30px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.romeo-image {
  width: 100%;
  height: 60vh;
  object-fit: cover;
}

html, body {
    height: 100%;
}

body {
  background: url('back.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white; /* for contrast */
}

@keyframes flicker {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}

.navbar-brand {
  font-weight: bold;
  font-size: 20px;
}
.navbar-nav .nav-link {
  margin-left: 15px;
}
/* Search container styling */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 20px auto;
  z-index: 1000;
}

.search-container input {
  width: 70%;
  padding: 10px 15px;
  border-radius: 20px 0 0 20px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
}

.search-container button {
  width: 30%;
  padding: 10px 15px;
  border-radius: 0 20px 20px 0;
  border: none;
  background-color: #e39a9a;
  color: white;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.search-container button:hover {
  background-color: #d17777;
}

#searchResults {
  margin-top: 10px;
  max-height: 300px;
  overflow-y: auto;
  background: #f7f5f1;
  border-radius: 10px;
  padding: 15px;
  display: none; /* hidden until search */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#searchResults p {
  margin: 10px 0;
  font-size: 14px;
  color: #2b2b2b;
}

#searchResults a {
  text-decoration: none;
  color: #2b2b2b;
  font-weight: bold;
}

#searchResults a:hover {
  color: #e39a9a;
}
/* Responsive */
@media (max-width: 900px) {
  .inputs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .inputs {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  background: #f6f1ea;
  padding-top: 60px;
  font-family: "Georgia", serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 30px 60px;
}

.site-footer h3 {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: lowercase;
}

.footer-newsletter p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input {
  padding: 14px;
  border: none;
  background: #eee7de;
  font-size: 12px;
}

.newsletter-form button {
  background: #e39a9a;
  color: white;
  border: none;
  padding: 14px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
}

.newsletter-form button:hover {
  opacity: 0.85;
}

/* Social icons */
.footer-social .social-icons {
  display: grid;
  grid-template-columns: repeat(3, 45px);
  gap: 15px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  background: #eee7de;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e39a9a;
  font-size: 18px;
  text-decoration: none;
}

.social-icons a:hover {
  background: #e39a9a;
  color: white;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  font-size: 13px;
  color: #2b2b2b;
  letter-spacing: 2px;
}

.footer-links a:hover {
  color: #e39a9a;
}

/* Bottom bar */
.footer-bottom {
  background: #e39a9a;
  color: black;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.site-footer h3,
.site-footer p,
.footer-links a,
.newsletter-form input,
.newsletter-form button {
    color: #2b2b2b !important;
}

.footer-social h3 {
    color: #2b2b2b !important;
}

.newsletter-form input::placeholder {
    color: #2b2b2b !important;
}
.navbar {
    background-color: #2b2b2b; /* charcoal gray */
}
