﻿/*--------------------------------------------------------------
# TABLE OF CONTENTS
--------------------------------------------------------------
1.  Font & Color Variables
2.  General Styling & Shared Classes
3.  Core UI Components (Scroll Top)
4.  Global Sections & Titles
5.  Hero Section
6.  Curated Collections
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --default-color: var(--brand-blue);
  --heading-color: var(--brand-blue);
  --accent-color: var(--brand-gold);
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --paragraph-color: #333333;
  /* Restricted Brand Palette */
  --brand-blue: #0D7AB3;
  --brand-light-blue: #EEF9FF;
  --brand-yellow: #FFC054;
  --brand-gold: #D19C40;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  --nav-hover-color: var(--brand-yellow);
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: var(--brand-blue);
  --nav-dropdown-hover-color: var(--brand-yellow);
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: var(--brand-light-blue);
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: var(--brand-blue);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: var(--brand-gold);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.1);
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 0 0 15px 0;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  color: var(--paragraph-color);
}

/* Global Button Style */
.btn-brand {
  border: 0;
  background: var(--brand-gold);
  color: #fff;
  padding: 12px 35px;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--default-font);
}

.btn-brand:hover {
  background: color-mix(in srgb, var(--brand-gold), transparent 20%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(209, 156, 64, 0.3);
  transform: translateY(-2px);
}

.text-brand {
  color: var(--brand-gold) !important;
}

.btn-brand-outline {
  background-color: transparent;
  color: var(--brand-gold);
  border: 1px solid var(--brand-gold);
  padding: 12px 35px;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--default-font);
}

.btn-brand-outline:hover {
  background-color: rgba(255, 192, 84, 0.1);
  color: var(--brand-yellow);
}
body.scrolled .header .logo img {
    height: 70px !important;
}
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxls {
    max-width: 1800px;
  }
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Core UI Components (Scroll Top)
--------------------------------------------------------------*/
/* Scroll Top Button */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--brand-gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 25px;
}

/* Ensure visibility on Tablet/iPad */
@media (max-width: 1024px) {
  .scroll-top {
    right: 25px;
    bottom: 25px;
    width: 48px;
    height: 48px;
    display: flex !important;
    /* Force display if hidden by any vendor styles */
  }

  .scroll-top i {
    font-size: 28px;
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: var(--brand-blue);
  --heading-color: #ffffff;
  color: var(--brand-gold);
  transition: all 0.5s;
  z-index: 997;
  background-color: #FFFFFF;
}

.header .topbar {
  background-color: var(--brand-gold);
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0;
}

.header .topbar .contact-info {
  display: flex;
  align-items: center;
}

.header .topbar .contact-info a {
  color: #FFFFFF;
  font-size: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  letter-spacing: -0.2px;
  text-decoration: none;
  font-style: normal;
}

.header .topbar .contact-info a i {
  font-size: 13px;
  margin-right: 4px;
  font-style: normal;
}

.header .topbar .social-links a i {
  font-style: normal;
}

@media (min-width: 400px) {
  .header .topbar .contact-info a {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.header .topbar .contact-info .bi-phone {
  margin-left: 10px !important;
}

@media (min-width: 480px) {
  .header .topbar .contact-info a {
    font-size: 13px;
  }
}

.header .topbar .contact-info .bi-phone {
  margin-left: 10px !important;
}

.header .topbar .social-links a {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: #ffffff;
}

.header .branding {
  min-height: 70px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(209, 156, 64, 0.2);
}

.header .logo h1 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brand-gold);
}

.header .logo img {
  height: 100px;
  transition: 0.3s;
}

@media (max-width: 1199px) {
  .header .logo img {
    max-height: 100px;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    max-height: 45px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1400px) {

  .navmenu a,
  .navmenu a:focus {
    color: var(--paragraph-color);
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    display: flex;
    align-items: center;
    /* Dropdown Refinement */
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--paragraph-color);
    font-size: 13px !important;
    padding: 10px 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: 0;
    left: 15px;
    right: 15px;
    background-color: var(--brand-gold);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: calc(100% - 30px);
  }

  .navmenu li:hover>a,
  .navmenu .active {
    color: var(--brand-gold);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #FFFFFF;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 100%;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.05);
    z-index: 99;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 12px !important;
    text-transform: none;
    letter-spacing: 0.5px;
    color: var(--paragraph-color);
  }

  .navmenu .dropdown ul a:hover {
    background-color: var(--brand-light-blue);
    color: var(--brand-gold);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  /* Mega Menu (Desktop) */
  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu>ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    left: 0;
    right: 0;
    width: 100%;
    padding: 20px;
    gap: 30px;
  }

  .navmenu .megamenu>ul>li {
    min-width: unset;
    flex: 1;
  }

  .navmenu .megamenu>ul>li.megamenu-img {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu .megamenu>ul>li.megamenu-img img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 250px;
  }

  .navmenu .megamenu ul a,
  .navmenu .megamenu ul .mega-title {
    padding: 8px 10px;
    display: block;
    font-size: 12px;
  }

  .navmenu .megamenu ul .mega-title {
    font-weight: 700;
    color: var(--paragraph-color);
    background-color: var(--brand-light-blue);
    border-radius: 4px;
    margin-bottom: 5px;
  }

  .navmenu .megamenu ul a:hover {
    background-color: transparent;
    color: var(--brand-gold);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header .branding {
    padding: 10px 0;
  }

  .mobile-nav-toggle {
    color: var(--brand-gold);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 15px;
    display: flex;
    align-items: center;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    inset: 80px 15px 15px 15px;
    padding: 15px 0;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    background-color: #ffffff;
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(209, 156, 64, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--paragraph-color);
    padding: 14px 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(209, 156, 64, 0.05);
  }

  .navmenu li:last-child a {
    border-bottom: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 18px;
    line-height: 0;
    margin-left: 10px;
    padding: 5px;
    transition: 0.3s;
  }

  .navmenu .dropdown.active>a i {
    transform: rotate(180deg);
  }

  .navmenu a:hover,
  .navmenu .active>a,
  .navmenu .active>a:focus {
    color: var(--brand-gold);
    background-color: rgba(209, 156, 64, 0.02);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 5px 0;
    margin: 5px 15px;
    background-color: rgba(209, 156, 64, 0.03);
    border: 1px solid rgba(209, 156, 64, 0.08);
    box-shadow: none;
    border-radius: 6px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    color: var(--paragraph-color);
    border-bottom: none;
  }

  .navmenu .dropdown.active>ul {
    display: block;
  }

  /* Mega Menu Mobile */
  .navmenu .megamenu ul .mega-title {
    font-weight: 700;
    color: var(--heading-color);
    background-color: rgba(209, 156, 64, 0.1);
    border-radius: 4px;
    margin: 10px 10px 5px 10px;
    padding: 10px 15px;
  }

  .navmenu .megamenu>ul>li.megamenu-img {
    display: none;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--brand-gold);
    position: fixed;
    top: 80px;
    right: 25px;
    z-index: 10000;
  }

  @media (max-width: 575px) {
    .mobile-nav-active .mobile-nav-toggle {
      top: 70px;
      right: 3px;
      padding-bottom: 2px;
    }
  }


}

@media (max-width: 575px) {
  .header .topbar {
    display: flex;
  }

  .header .topbar .contact-info a i {
    font-size: 18px;
  }

  .header .topbar .contact-info a span {
    display: none !important;
  }

  .header .topbar .social-links {
    display: flex !important;
  }

  .header .topbar .social-links a {
    margin-left: 15px;
    font-size: 16px;
  }

  .header .logo img {
    height: 45px;
  }

  .navmenu ul {
    inset: 65px 10px 10px 10px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--paragraph-color);
  background-color: var(--brand-light-blue);
  font-size: 14px;
  position: relative;
  border-top: 1px solid rgba(209, 156, 64, 0.2);
}

.footer-contact p {
  font-size: 14px !important;
}

.footer .footer-top {
  padding-top: 60px;
  padding-bottom: 30px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0;
  color: #D19C40;
  border: 1px solid var(--brand-gold);
  font-size: 16px;
  margin-right: 12px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
  color: #fff !important;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-gold);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: var(--paragraph-color);
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.5px;
  transition: 0.3s;
  text-decoration: none;
}

.footer .footer-links ul a:hover {
  color: var(--brand-gold);
  padding-left: 5px;
}

.footer .footer-contact span {
  margin-bottom: 5px;
  color: var(--paragraph-color);
}

.footer .footer-contact strong {
  color: var(--brand-gold);
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid rgba(209, 156, 64, 0.1);
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--paragraph-color), transparent 20%);
}

.footer .copyright p {
  font-size: 10px !important;
}

.footer .copyright .sitename {
  color: var(--brand-gold);
}

/* Footer Newsletter Specific Styling */
.footer-newsletter {
  font-size: 14px;
}

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  font-size: 14px !important;
}

.footer-newsletter .newsletter-form {
  padding: 6px 10px;
  position: relative;
  background: #fff;
  border: 1px solid rgba(209, 156, 64, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 8px 15px;
  width: 100%;
  color: var(--default-color);
  background: none;
  font-family: var(--default-font);
}

.footer-newsletter .newsletter-form input[type=email]:focus {
  outline: none;
}

@media (max-width: 575px) {
  .footer-newsletter .newsletter-form {
    flex-direction: column;
    padding: 10px;
    background: none;
    border: 0;
    box-shadow: none;
    gap: 15px;
  }

  .footer-newsletter .newsletter-form input[type=email] {
    background: #fff;
    border: 1px solid rgba(209, 156, 64, 0.3);
    padding: 14px;
    border-radius: 4px;
  }

  .footer-newsletter .newsletter-form .btn-brand {
    width: 100%;
    padding: 16px;
    border-radius: 4px;
  }
}

/*--------------------------------------------------------------
# Global Sections & Titles
--------------------------------------------------------------*/
/* Global Sections */
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/* Global Section Titles */
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-family: var(--heading-font);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--heading-color);
}

@media (max-width: 575px) {

  .portfolio .section-title h2,
  .google-reviews .section-title h2 {
    font-size: 28px !important;
  }

  .section-title .sub-title,
  .section-title .sub-heading {
    font-size: 10px;
  }
}

.section-title .sub-title,
.section-title .sub-heading {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}