/*Global rule for all elements*/
* {
    box-sizing: border-box;
}

body {
  background-color: #F6E8D5;
}


/*Custom Nav*/
.customNav {
    background-color: #F6E8D5;
    height: 60px;
}

.navbar-brand {
    color: #A67B5B;
    /* Light brown, for example */
    font-weight: bold;
    text-decoration: none;
    padding-left: 12px;
    padding-right: 12px;
    font-family: 'Playwrite AU QLD', sans-serif;
}

.navbar-brand:hover {
    color: #8B5E3C;
    /* Slightly darker on hover */
}

.navbar-nav .nav-link {
    background-color: #A67B5B;
    /* Light brown example */
    color: #F6E8D5;
    padding: 8px 16px;
    border-radius: 8px;
    margin-left: 8px;
    /* Spacing between buttons */
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    background-color: #8B5E3C;
    /* Darker brown on hover */
    color: #F6E8D5;
    text-decoration: none;
}


.dropdown-menu {
    background-color: #F6E8D5;
    /* your soft beige */
    border: 2px solid #A67B5B;
    /* light brown border for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(166, 123, 91, 0.3);
    padding: 0.5rem 0;
    min-width: 100px;
}

/* Dropdown items */
.dropdown-menu .dropdown-item {
    color: #4B3A2F;
    /* warm brown text */
    padding: 8px 20px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Hover and focus on dropdown items */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #A67B5B;
    /* light brown hover background */
    color: #F6E8D5;
    text-decoration: none;
}

/* About Us Button */
/* Jumbotron */
.heroBackground {
    height: 55vh;
    padding-top: 60px; /* same as nav bar height */
    background-color: #A67B5B;
    color: #F6E8D5;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 0;
    flex-direction: column; /* Ensure content stacks vertically */
    text-align: center;      /* Center text inside flex */
}

/* About Us Button */
.btn-about {
    background-color: #F6E8D5;
    color: #A67B5B;
    border: 2px solid #F6E8D5;
    padding: 10px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.btn-about:hover {
    background-color: transparent;
    color: #F6E8D5;
    border-color: #F6E8D5;
    cursor: pointer;
}

/* Main container style */
.custom-box {
  background-color: #F6E8D5; /* Soft beige */
  border: 2px solid #A67B5B;
  border-radius: 12px;
  padding: 24px;
  box-shadow: none; /* REMOVE Bootstrap default grey shadow */
  height: 100%;
  color: #4B3A2F;
}

.photo-scroll {
  background-color: #F6E8D5;
  overflow: hidden;
  padding: 20px 0;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-container {
  overflow: hidden;
  width: 100%;
    -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;     /* Firefox */
}

.image-track {
  display: flex;
  gap: 16px;
  animation: scroll-left 60s linear infinite;
}

.image-track img {
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.image-track img:hover {
  transform: scale(1.05);
}

/* Continuous scrolling animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Each form box */
.custom-box {
  flex: 1 1 400px;        /* flexible width */
  max-width: 500px;
  box-sizing: border-box;
  padding: 20px;
  background-color: #fffaf0; /* light cream background */
  border: 1px solid #A67B5B;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Form labels */
.custom-box label {
  color: #A67B5B;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

/* Heading style */
.custom-box h3 {
  color: #A67B5B;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Input & textarea styling */
.custom-box input,
.custom-box textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #A67B5B;
  background-color: #fffaf0;
  color: #4B3A2F;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Focus effect */
.custom-box input:focus,
.custom-box textarea:focus {
  outline: none;
  border-color: #8B5E3C;
  box-shadow: 0 0 0 0.2rem rgba(166, 123, 91, 0.3);
  background-color: #fff7ec;
}

/* Submit button styling */
.custom-box button {
  background-color: #A67B5B;
  color: #F6E8D5;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-box button:hover {
  background-color: #8B5E3C;
  color: #fff;
}

/* Anchor offset for scrolling (contact section) */
#contact {
  padding-top: 80px;
  margin-top: -60px;
}

#instagram {
  padding-top: 80px;
  margin-top: -60px;
}

.icon{
  color:#A67B5B; 
}

