:root {
  --primary-color: #D2B48C;
  --secondary-color: #F5F5DC;
  --accent-color: #8B4513;
  --text-color: #333;
  --light-color: #FFF;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text-color);
  background-color: var(--light-color);
}

/* Navigation */
.navbar {
  background-color: var(--primary-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-color);
  font-weight: 500;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--accent-color);
}

/* Carousel */
.carousel-item {
  height: 600px;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
}

.carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  color: var(--accent-color);
  margin-bottom: 40px;
  text-align: center;
}

/* Services */
.service-card {
  background: var(--secondary-color);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Features */
.feature-box {
  text-align: center;
  padding: 30px;
  background: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 50px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 10px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(210, 180, 140, 0.25);
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  padding: 60px 0 30px;
}

.footer-title {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  background: var(--accent-color);
  color: var(--light-color);
  padding: 20px 0;
  margin-top: 30px;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-color);
}

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--light-color);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-item {
    height: 400px;
  }
  
  section {
    padding: 40px 0;
  }
}
  
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.search-overlay {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 10;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #D2B48C;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.back-to-top:hover {
    background-color: #8B4513;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}
  
  