
@import url('https://fonts.googleapis.com/css2?family=Ancizar+Sans:ital,wght@0,100..1000;1,100..1000&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {font-family:"noto Sans", sans-serif;
      margin-bottom: 0;
      padding-bottom: 0;
      box-sizing: border-box;
    }

.navbar-brand {
    font-family: "Lora",serif;
    font-size: 30px;
    font-weight: 500;
    font-style: italic;
    color: white;
}

.orange-navbar {
    background-color: #E3963E;
}

.custom-navbar {
  padding: 1rem 2.2rem;  /* top-bottom 1rem, left-right 2rem */
}



.navbar-nav .nav-link,
.navbar-nav .nav-link.active {
  color: white; /* default white */
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
  padding-bottom: 5px;
  font-family: "Lora",serif;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #502309; /* orange on hover */
  text-decoration: none;
}




.header-title {
    font-size:34px;
    font-weight: 300;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-left:110px;
}

.header-subtitle {
  font-size: 1.5rem;        /* ~24px on default screens */
  font-weight: 400;
  color: #272626;
  text-align: center;
  margin-top: -5px;
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Optional: Adjust subtitle size for smaller screens */
@media (max-width: 768px) {
  .header-subtitle {
    font-size: 1.25rem;     /* Slightly smaller on tablets/phones */
  }
}

@media (max-width: 480px) {
  .header-subtitle {
    font-size: 1.1rem;       /* Even smaller on small phones */
  }
}


.header-title {
  white-space: nowrap;
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 3rem); /* Auto scale on all devices */
  margin: 0;
  text-align: center;
}



.photo-gallery {
  padding-top: 6rem;
  font-size:clamp(1.5rem, 5vw, 3rem);  /* Auto scale on all devices */
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.gallery-img {
  width: 100%;
  height: 250px;       /* choose what looks good */
  object-fit: cover;   /* prevents stretching */
}


.cd-gallery {
  padding-top: 6rem;
  font-size:clamp(1.5rem, 5vw, 3rem);  /* Auto scale on all devices */
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/*album images*/
.card-img-top {
  object-fit: cover;
  height: 200px;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.btn-brown {
  background-color: #6d4837; /* Dark brown */
  color: white;
  border: none;
}

.btn-brown:hover {
  background-color: #924f30; /* Slightly darker brown on hover */
  color: white;
}



.brown-icon {
  color: #5C4033; /* Dark brown */
}

.cart-dropdown {
  background: white;
  border-radius: 8px;
  max-height: 300px;
  overflow-y: auto;
}

/* Cart Dropdown Panel */
.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 9999;
  width: 400px; /* Increased width */
  max-height: 450px;
  overflow-y: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: white;
  margin-top: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}

/* Responsive Width */
@media (max-width: 480px) {
  .cart-dropdown {
    width: 95vw;
    right: 2.5%;
    left: 2.5%;
  }
}

@media (max-width: 350px) {
  .navbar .container-fluid {
    flex-wrap: wrap !important;
  }

  .navbar-brand,
  .navbar-toggler,
  .cart-wrapper {
    flex: 1 1 100% !important;
    margin-bottom: 0.4rem;
  }

  .cart-wrapper {
    display: flex !important;
    justify-content: flex-end;
  }

  #cart-icon {
    padding: 6px 8px;
    font-size: 18px;
    /* Optional: reduce size slightly if needed */
  }

  #cart-dropdown {
    width: 90vw !important;
    right: 5vw !important;
    left: auto !important;
    border-radius: 8px;
  }
}


/* Cart Items Styling */
.cart-dropdown .list-group-item {
  padding: 14px;
  font-size: 14px;
  border: none;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 8px;
}

/* Item name and price */
.cart-dropdown .list-group-item strong {
  font-size: 15px;
}

.cart-dropdown .list-group-item small {
  font-size: 13px;
}

/* Button Section */
.cart-dropdown .d-flex.align-items-center {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 10px;
}

/* Buttons */
.cart-dropdown .btn {
  padding: 5px 10px;
  font-size: 13px;
}

.cart-dropdown .btn-remove {
  color: white;
  background-color: #dc3545;
  border: none;
  margin-top: 30px;
}

.cart-dropdown .btn-remove:hover {
  background-color: #b02a37;
}

/* Total Styling */
.cart-dropdown .cart-total-text {
  font-size: 17px;
  font-weight: 300;
  margin-top: 10px;
}

/* Brown Buy Button */
.cart-dropdown .btn-buy {
  background-color: #5c4033;
  color: white;
  border: none;
  margin-top: 10px;
}

.cart-dropdown .btn-buy:hover {
  background-color: #4a3229;
}


@media (max-width: 576px) {
  .cd-gallery {
    font-size: 1.6rem;
  }
}


.contact-title {
  white-space: nowrap;
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 3rem);  /* Auto scale on all devices */
  margin: 0 auto 1.5rem auto;
  text-align: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.row g-5{ margin-top:20px;}

.contact-section {
  background-color: #f8f8f8;
  padding: 3rem 0;
}


.contact-heading {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  color: #502309;
  margin-bottom: 1rem;
}

.contact-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.contact-section .form-label {
  font-weight: 500;
  color: #333;
}

.contact-section .form-control {
  border-radius: 0.375rem;
  box-shadow: none;
}

.contact-section .btn-dark {
  background-color: #502309;
  border:#3b1a05;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.contact-section .btn-dark:hover {
  background-color: #3b1a05;
}


.img-fluid {
    margin-bottom:50px;
}

/* Center the block containing title and text */
.text-block {
  max-width: 100%;
}

/* Header Title: centered inside text block */
.header-title-one {
  white-space: nowrap;
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 3rem);  /* Auto scale on all devices */
  margin: 0;
  text-align: center;
}

/* Description Paragraph */
.description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
}

/*footer*/

.footer-orange {
  background-color: #E3963E; /* Bright orange */
  color: #ffffff;
}

.footer-orange a {
  color: #ffffff;
  font-size: 1.3rem;
}

.footer-orange a:hover {
  color: #502309; /* Light golden hover */
  text-decoration: none;
}

.footer-orange h5 {
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 25px;
  margin-top: 10px;
}

.social-icons a {
  color: white;
  font-size: 1.3rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #4b2e2b; /* Dark brown on hover */
}


.text-nowrap {
  font-size:14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video-title {
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 3rem);
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}


.newsletter-input {
  
  background-color: white;
  border: none;
  padding: 0rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

.subscribe-btn {
  background-color: white;
  color: rgb(85, 84, 84);
  font-weight: 600;
  border: none;
  padding: 0.3rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #ffe0c2;
  color: #cc5c00;
}


@media (max-width: 767.98px) {
  .newsletter-box {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .newsletter-section .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-section h5 {
    margin-bottom: 0.5rem;
  }

  .newsletter-form {
    width: 100% !important;
  }

  .newsletter-input {
    width: 100%;
  }

  .subscribe-btn {
    width: 100%;
  }
}



/* Align text left on wider screens if desired */
@media (min-width: 768px) {
  .text-block {
    text-align: center; /* keep centered on larger screens too */
  }
}

/* Optional: shrink font slightly on very small screens */
@media (max-width: 400px) {
  .copyright-text {
    font-size: 0.9rem;
  }
}


