


/* ======================================================
   TOP INSTAGRAM BAR
====================================================== */
/* ================= TOP INSTAGRAM BAR ================= */
.top-instagram-bar {
  background: linear-gradient(135deg, #f3c6cc, #e9aab3);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* subtle shimmer animation */
.top-instagram-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.2), rgba(255,255,255,0.6), rgba(255,255,255,0.2));
  transform: skewX(-25deg);
  transition: all 0.5s ease;
}

.top-instagram-bar:hover::after {
  left: 125%;
}

.top-instagram-bar:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(233,170,179,0.4);
}

/* responsive */
@media (max-width: 768px) {
  .top-instagram-bar {
    font-size: 0.9rem;
    padding: 10px 5px;
  }

  .top-instagram-bar i {
    font-size: 1rem;
  }
}



/* ======================================================
   NAVBAR
====================================================== */

/* ===============================
   NAVBAR - FEMININE LUXURY STYLE
=============================== */

.navbar {
  /* padding: 2.0rem 1rem; */
  background: #fff; /* Light background for luxury feel */
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  z-index: 999;

}
.navbar-toggler-icon{
   background-color: rgb(0, 0, 0);
}

/* Logo + text */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #333;
  transition: transform 0.3s ease;
}
  .navbar-nav .nav-link {
  color: rgb(255, 255, 255);
}
.navbar-brand img {
  max-height: 90px;
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c98a96; /* Feminine accent */
}

/* Underline animation */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f3c6cc, #e9aab3);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown menu */
.navbar-nav .dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 0.5rem 0;
  background: linear-gradient(135deg, #fff7f8, #fff2f4);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Prevent menu closing immediately on mobile */
.navbar-nav .dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Dropdown items */
.navbar-nav .dropdown-item {
  padding: 0.7rem 1.5rem;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .dropdown-item:hover {
  background: #f3c6cc;
  color: #fff;
  border-radius: 8px;
}

/* Caret rotation on open */
.navbar-nav .dropdown-toggle::after {
  transition: transform 0.3s ease;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* MOBILE RESPONSIVE */
@media (max-width: 992px) {
  .navbar-nav {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    background: none;
    transform: none !important;
  }
  .navbar-nav .nav-link {
  color: rgb(0, 0, 0);
}

  .navbar-nav .dropdown-item {
    padding-left: 2rem;
  }
}

/* NAVBAR TOGGLE BUTTON */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===============================
   NAVBAR MOBILE RESPONSIVE
=============================== */

/* Tablet view: 768px */
@media (max-width: 768px) {

  /* Reduce logo + text size */
  .navbar-brand img {
    max-height: 85px;
  }
  .navbar-brand span {
    font-size: 1.1rem;
  }

  /* Navbar links vertical stack */
  .navbar-nav {
    background: #fff;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  .navbar-nav .nav-link {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: black;
  }

  /* Dropdown */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
    background: none;
    transform: none !important;
    padding-left: 1rem;
  }

  .navbar-nav .dropdown-item {
    padding-left: 1.5rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }
}

/* Small mobile view: 456px */
@media (max-width: 456px) {

  /* Shrink logo + text */
  .navbar-brand img {
    max-height: 85px;
  }
  .navbar-brand span {
    font-size: 1rem;
  }

  /* Navbar links font smaller */
  .navbar-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    color: black;
  }

  /* Dropdown items smaller */
  .navbar-nav .dropdown-item {
    padding-left: 1.2rem;
    font-size: 0.9rem;
  }

  /* Ensure toggler is easy to tap */
  .navbar-toggler {
            width: 40px;
            height: 40px;
        padding: 2px;
        background: white;
  }
}


/* Get In Touch navbar button */
.navbar .btn-warning {
  padding: 12px 28px;      /* bigger size */
  font-size: 18px;         /* larger text */
  border-radius: 40px;     /* pill shape */
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* hover effect */
.navbar .btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* center nav + push button right */
@media (min-width: 992px) {
  .navbar-nav {
    margin: 0 auto;   /* center links */
  }

  .navbar .nav-item:last-child {
    margin-left: auto; /* push button to right */
  }
}













/* ======================================================
   FOOTER SECTION
====================================================== */

footer {
  background: #111;
  color: #ddd;
}

footer h5 {
  font-family: 'Oswald', sans-serif;
  margin-bottom: 18px;
  font-size: 18px;
  text-align: justify;
}

footer p,
footer li {
  font-size: 14px;
  color: #aaa;
  text-align: justify;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: #b86b77;
}

footer img {
  max-width: 150px;
}

footer hr {
  border-color: #333;
  margin: 25px 0;
}



/* ======================================================
   BUTTON GLOBAL POLISH
====================================================== */

.btn {
  border-radius: 30px !important;
  padding: 10px 24px;
}



/* ======================================================
   SMALL ANIMATIONS
====================================================== */

.card,
.btn,
.nav-link {
  transition: all 0.3s ease;
}



/* ======================================================
   RESPONSIVE DESIGN
====================================================== */

/* Tablet */
@media (max-width: 992px) {

  #services,
  #contact {
    padding: 70px 0;
  }

  .card img {
    height: 220px;
  }

  footer {
    text-align: center;
  }
}


/* Mobile */
@media (max-width: 576px) {

  #services h2,
  #contact h2 {
    font-size: 26px;
  }

  .card img {
    height: 200px;
  }

  iframe {
    height: 250px;
  }

  footer img {
    margin: auto;
  }
}














/* =========================================
   FLOAT ACTIONS WRAPPER (all buttons together)
========================================= */

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 25px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* =========================================
   BASE BUTTON STYLE
========================================= */

.float-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  color: #fff;

  border: none;
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}


/* Hover lift */
.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
}


/* =========================================
   WhatsApp
========================================= */

.whatsapp {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}


/* =========================================
   Instagram (feminine gradient)
========================================= */

.instagram {
  background: linear-gradient(135deg,
    #f58529,
    #dd2a7b,
    #8134af,
    #515bd4
  );
}


/* =========================================
   Back To Top (brand color)
========================================= */

.top-btn {
  background: linear-gradient(135deg, #c98a96, #e9aab3);
}


/* =========================================
   MOBILE SIZE
========================================= */

@media (max-width: 768px) {

  .float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

}
/* =========================================
   TOOLTIP STYLE (Luxury Feminine)
========================================= */

.float-btn {
  position: relative;
}


/* tooltip bubble */
.float-btn::after {
  content: attr(data-tooltip);

  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);

  background: linear-gradient(135deg, #c98a96, #e9aab3);
  color: #fff;

  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;

  border-radius: 20px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  box-shadow: 0 6px 18px rgba(201,138,150,0.35);

  transition: all 0.3s ease;
}


/* small arrow */
.float-btn::before {
  content: "";
  position: absolute;

  right: 52px;
  top: 50%;
  transform: translateY(-50%);

  border: 6px solid transparent;
  border-left-color: #e9aab3;

  opacity: 0;
  transition: 0.3s ease;
}


/* show on hover */
.float-btn:hover::after,
.float-btn:hover::before {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}


/* =========================================
   MOBILE (always hidden for space)
========================================= */

@media (max-width: 768px) {
  .float-btn::after,
  .float-btn::before {
    display: none;
  }
}


