/* ------------------------------------
   GLOBAL THEME - LOGO COLOR BASED
--------------------------------------*/
html {
  scroll-behavior: smooth;
}

:root {
  --gold: #C9A348;       /* Your logo gold */
  --gold-dark: #A8832E;
  --gold-light: #F5E9C8;
  --black: #000000;
  --dark-gray: #1b1b1b;
  --white: #FFFFFF;
  --light-bg: #FAF7F0;
}

/* General */
body {
  background-color: var(--light-bg);
  color: var(--dark-gray);
  font-family: 'Poppins', sans-serif;
}

/* Buttons */
.btn-primary {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transition: 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* --------------------------------------------------------
      PROFESSIONAL NAVBAR — GOLD THEME (UPDATED)
---------------------------------------------------------*/

.custom-navbar {
  background: #ffffff;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: 0.3s ease-in-out;
  z-index: 9999;
}

/* Add shadow on scroll */
.custom-navbar.scrolled {
  background: #ffffff !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

/* Logo Hover */
.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: scale(1.05);
}

/* Navbar Link Style */
.nav-link-custom {
  font-weight: 600;
  color: var(--black) !important;
  position: relative;
  padding: 8px 0;
  transition: 0.3s ease;
  letter-spacing: 0.2px;
}

/* Gold underline animation */
.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-link-custom:hover {
  color: var(--gold) !important;
}
.nav-link-custom:hover::after {
  width: 100%;
  left: 0;
}

/* Active section */
.nav-link-custom.active {
  color: var(--gold) !important;
}
.nav-link-custom.active::after {
  width: 100%;
  left: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .custom-navbar {
    background: #ffffff !important;
  }
  .nav-link-custom {
    display: block;
    padding: 14px 0;
  }
}

/* ------------------------------------
      CAROUSEL (Hero Banner)
--------------------------------------*/
.carousel-item img {
  object-fit: cover;
  height: 80vh;
  width: 100%;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.45);
  padding: 1.5rem 2rem;
  border-radius: 0.7rem;
  backdrop-filter: blur(5px);
}
.carousel-caption h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}
.carousel-caption p {
  font-size: 1.1rem;
  color: var(--white);
}

/* ------------------------------------
      ABOUT SECTION
--------------------------------------*/
#about img,
#about-2 img {
  max-height: 450px;
  object-fit: cover;
  border-radius: 8px;
}

/* ------------------------------------
    CARDS – EVENT, EXHIBITION, BRANDS
--------------------------------------*/
#calendar .card,
.hover-scale {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#calendar .card:hover,
.hover-scale:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}
#calendar .card img {
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}

/* Brand Images */
#brands .card-img-top {
  height: 200px;
  object-fit: cover;
  border-radius: 0.6rem;
  background-color: var(--white);
}

/* Animation */
.fade-in,
.fade-in-group,
.fade-in-group-2 {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------
       FORM (CONTACT + EXHIBIT)
--------------------------------------*/
#exhibit form,
#contact form {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
  background: var(--white);
}
#exhibit form:hover,
#contact form:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ------------------------------------
       BACK TO TOP BUTTON
--------------------------------------*/
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 8px;
  width: 45px;
  height: 45px;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  z-index: 999;
  transition: all 0.3s ease;
}
#backToTop:hover {
  background: var(--gold-dark);
}

/* ------------------------------------
        WHATSAPP BUTTON
--------------------------------------*/
#whatsappChat {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 5px 14px rgba(0,0,0,0.3);
  transition: 0.3s;
}
#whatsappChat:hover {
  transform: scale(1.1);
}

/* ------------------------------------
          FOOTER
--------------------------------------*/
.site-footer {
  background: var(--black);
  color: var(--gold-light);
  padding: 2rem 0;
}
.site-footer .footer-link {
  color: var(--gold-light);
}
.site-footer .footer-link:hover {
  color: var(--gold);
}
.site-footer .social-icon {
  background: rgba(255,255,255,0.1);
  color: var(--gold-light);
}
.site-footer .social-icon:hover {
  background: var(--gold);
  color: var(--black) !important;
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .carousel-item img { height: 65vh; }
}
@media (max-width: 576px) {
  .carousel-item img { height: 50vh; }
}
/* ===== Footer Links Styling ===== */

.footer-links {
    min-width: 220px;
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #000;
    position: relative;
}

.footer-links h4::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #dba852; /* Your theme golden shade */
    position: absolute;
    bottom: -6px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #777;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    padding-left: 4px;
    color: #cda45e; /* Golden hover */
}
