/* 1. Add Smooth Scrolling to the entire document */
html {
  scroll-behavior: smooth;
}

#fineJewelry,
#diamonds-section,
#instagram-section,
#our-story-section,
#contact-section {
  scroll-margin-top: 5rem;
}

/* 2. Fix the fixed background lag by switching to a standard scroll 
   (Or use a modern GPU-friendly parallax approach) */
.collection-banner {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.10)),
    url('images/bg1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  text-align: center;
  padding: 0 5%;
}

/* 3. Create a class for the scrolled navbar state */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 2rem;
  /* Initial padding */
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
  /* Smoothly transition only what's needed */
}

.navbar.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  background: #faf7f5;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar Styling */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cinzel', serif;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.logo-img {
  width: 2.8rem;
  height: auto;
  display: block;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #b2976d;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin-left: auto;
  margin-right: 1rem;
}

.nav-item {
  position: relative;
  margin: 0 1.2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #b2976d;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

.nav-link:hover {
  color: #b2976d;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.7rem 1.5rem;
  color: #555;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: #f9f7f5;
  color: #b2976d;
  padding-left: 2rem;
}

.nav-icons {
  display: flex;
  align-items: center;
}

.icon-link {
  color: #333;
  font-size: 1.3rem;
  margin-left: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.icon-link:hover {
  color: #b2976d;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #b2976d;
  color: white;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #333;
  margin-left: 1.5rem;
}

.search-container {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 101;
}

.search-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
}

/* Responsive */
@media screen and (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 90px;
    left: -100%;
    background: white;
    width: 100%;
    height: calc(100vh - 90px);
    flex-direction: column;
    padding: 2rem 0;
    transition: all 0.5s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    margin: 1.5rem 0;
    width: 100%;
    text-align: center;
  }

  .dropdown {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    background: #f9f9f9;
  }

  .nav-item:hover .dropdown {
    display: none;
  }

  .dropdown.active {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active .fa-bars {
    display: none;
  }

  .hamburger .fa-times {
    display: none;
  }

  .hamburger.active .fa-times {
    display: block;
  }

  .search-container {
    width: 100%;
    right: 0;
    left: 0;
  }
}




/* Home Section Styling */
.home-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url('images/main.jpg');
  background-size: cover;
  background-position: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 600px;
  animation: fadeIn 1.5s ease-out;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  color: #b2976d;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  color: #2a2a2a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #555;
}

.btn {
  padding: 1rem 2.5rem;
  background: #b2976d;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn:hover {
  background: #a0855c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 0;
  }
}

/* Featured Products */
.featured-section {
  padding: 6rem 5%;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #2a2a2a;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #b2976d;
  bottom: -10px;
  left: 25%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.product-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.product-details {
  padding: 1.5rem;
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2a2a2a;
}

.product-price {
  color: #b2976d;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }

  .product-image {
    height: 220px;
  }

  .product-name {
    font-size: 1.2rem;
  }

  .product-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .featured-section {
    padding: 4rem 3%;
  }

  .section-title {
    font-size: 2rem;
  }

  .products-grid {
    gap: 2rem;
  }

  .product-image {
    height: 200px;
  }

  .product-details {
    padding: 1.2rem;
  }

  .product-name {
    font-size: 1.1rem;
  }

  .product-price {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.7rem;
  }

  .product-image {
    height: 180px;
  }

  .product-name {
    font-size: 1rem;
  }

  .product-price {
    font-size: 0.95rem;
  }

  .btn {
    width: 100%;
    padding: 0.9rem 0;
    font-size: 1rem;
  }
}


/* Collection Banner */
.collection-banner {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(0, 0, 0, 0.363), rgba(0, 0, 0, 0.158)),
    url('images/bg1.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 0 5%;
}

.banner-content {
  max-width: 800px;
}

.banner-title {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.banner-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-light {
  background: transparent;
  border: 2px solid white;
}

.btn-light:hover {
  background: white;
  color: #2a2a2a;
}

/* Testimonials */
.testimonials {
  padding: 6rem 5%;
  background: #f8f4f0;
  text-align: center;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #2a2a2a;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 2px;
  background: #b2976d;
  bottom: -10px;
  left: 25%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
}

.author-name {
  font-weight: 600;
  color: #2a2a2a;
}

.author-title {
  font-size: 0.9rem;
  color: #888;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .testimonial-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 4rem 4%;
  }

  .testimonial-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-image {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }
}


/* Newsletter */
.newsletter {
  padding: 5rem 5%;
  text-align: center;
  background: linear-gradient(to right, #f8f4f0, #f1e9e0);
}

.newsletter-title {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #2a2a2a;
}

.newsletter-text {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
}

.newsletter-btn {
  padding: 1rem 1.5rem;
  background: #b2976d;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-family: 'Lora', serif;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #a0855c;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .banner-title {
    font-size: 2.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    border-radius: 4px;
    margin-bottom: 1rem;
  }

  .newsletter-btn {
    border-radius: 4px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .banner-title {
    font-size: 2rem;
  }
}




/* Fine Jewelry Section */
.fine-jewelry-section {
  padding: 6rem 5%;
  background: #fff;
  text-align: center;
}

.jewelry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.jewelry-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.jewelry-card:hover {
  transform: translateY(-10px);
}

.jewelry-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.jewelry-details {
  padding: 1.5rem;
}

.jewelry-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.jewelry-description {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fine-jewelry-section {
    padding: 4rem 3%;
  }

  .jewelry-name {
    font-size: 1.15rem;
  }

  .jewelry-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .jewelry-image {
    height: 200px;
  }

  .jewelry-name {
    font-size: 1rem;
  }

  .jewelry-description {
    font-size: 0.9rem;
  }
}





/* Diamonds Section */
.diamonds-section {
  padding: 6rem 5%;
  background: #fdfbf9;
  text-align: center;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.05rem;
}

.diamonds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.diamond-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease;
}

.diamond-card:hover {
  transform: translateY(-8px);
}

.diamond-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.diamond-details {
  padding: 1.5rem;
}

.diamond-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.diamond-description {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .diamonds-section {
    padding: 4rem 3%;
  }

  .diamond-name {
    font-size: 1.15rem;
  }

  .diamond-description {
    font-size: 0.95rem;
  }

  .section-intro {
    font-size: 0.98rem;
  }
}



/* Our Story Section */
/* Base Styles */
.our-story-section {
  background-color: #f8f4f0;
  padding: 4rem 2%;
}

.story-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-text {
  flex: 1 1 500px;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}

.story-paragraph {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #555;
}

.story-image-container {
  flex: 1 1 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  aspect-ratio: 4 / 3;
}

.story-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 12px;
}

.story-image-container:hover .story-image {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .story-content {
    gap: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .story-content {
    flex-direction: column;
  }

  .story-image-container {
    aspect-ratio: auto;
    max-height: 400px;
  }

  .story-paragraph {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.6rem 1rem;
  }
}



/* About Section - Text Only */
.about-section-text-only {
  background-color: #f9f6f2;
  padding: 6rem 0;
  display: flex;
  justify-content: center;
}

.about-container {
  width: 90%;
  max-width: 900px;
  text-align: center;
}

.about-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #2a2a2a;
  margin-bottom: 2rem;
}

.about-paragraph {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.8rem;
}

/* Reuse global .btn styles */
.btn {
  padding: 1rem 2.5rem;
  background: #b2976d;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: #a0855c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }

  .about-paragraph {
    font-size: 1rem;
  }
}


/* Instagram Section */
.instagram-section {
  padding: 5rem 5%;
  background: linear-gradient(to right, #fdfbf9 0%, #faf7f5 100%);
  text-align: center;
}

.instagram-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}

.instagram-feed {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.5rem 0 2rem;
  margin-bottom: 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.instagram-feed::-webkit-scrollbar {
  height: 6px;
}

.instagram-feed::-webkit-scrollbar-track {
  background: #f0ebe6;
  border-radius: 3px;
}

.instagram-feed::-webkit-scrollbar-thumb {
  background: #b2976d;
  border-radius: 3px;
}

.instagram-embed {
  flex: 0 0 280px;
  position: relative;
  width: 280px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(178, 151, 109, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  scroll-snap-align: start;
  background: #fff;
}

.instagram-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.instagram-btn {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .instagram-section {
    padding: 4rem 3%;
  }

  .instagram-heading {
    font-size: 1.8rem;
  }

  .instagram-embed {
    flex: 0 0 220px;
    width: 220px;
  }
}

/* Contact Section */
.contact-section {
  padding: 6rem 5%;
  background: #fff;
  text-align: center;
}

.contact-section .section-intro {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: #f9f7f5;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.5rem;
  color: #b2976d;
  margin-right: 1rem;
  margin-top: 0.2rem;
}

.contact-item h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #b2976d;
}

.contact-form button {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Get Directions Inline Link */
.directions-icon-link {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  vertical-align: middle;
  text-decoration: none;
}

.contact-item p .directions-icon-link i.material-icons {
  font-size: 1.25rem !important;
  margin: 0 !important;
  color: #333 !important;
  transition: transform 0.2s ease, color 0.2s ease;
}

.contact-item p .directions-icon-link:hover i.material-icons {
  transform: scale(1.15);
  color: #b2976d !important;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links i {
  font-size: 1.5rem;
  align-items: center !important;
  cursor: pointer;
  transition: transform 0.3s ease;
  color: #333 !important;
}

.social-links i:hover {
  transform: scale(1.2);
}

/* ==========================================================================
   Floating WhatsApp Button Styling
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff !important;
  /* Forces the icon to stay white */
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  /* Keeps it above the sticky navbar and popups */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
  font-size: 34px;
}

/* Hover and active micro-interactions */
.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Scaling for Mobile Devices */
@media screen and (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float i {
    font-size: 28px;
  }
}