/* =====================================
   Tailwind Custom Classes & Extensions
===================================== */

/* Material Symbols settings */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Global font */
body {
  font-family: 'Manrope', sans-serif;
}

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
        }
        .service-card:hover .service-details {
            opacity: 1;
            transform: translateY(0);
        }
        .service-details {
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

                    nav.hidden.md\:flex.items-end.gap-10 {
    padding-right: 50px;
}
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }
/* =====================================
   Hero Slider
===================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh; /* full viewport height */
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slider .slide.active {
  opacity: 1;
  z-index: 10;
}

.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
background: linear-gradient(rgb(25 35 38 / 0%) 0%, rgb(25 35 38) 100%);
    /* background: linear-gradient(rgb(25 35 38 / 0%) 46%, rgb(25 35 38) 100%); */
mix-blend-mode: normal;
opacity: 1;
backdrop-filter: blur(1px) saturate(1.02);
    z-index: 10;
}   

/* =====================================
   Masonry Grid Portfolio
===================================== */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .masonry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-item:nth-child(even) {
    margin-top: 4rem;
  }
}

/* Portfolio overlay */
.portfolio-overlay {
  background-color: rgba(25, 35, 38, 0.85);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

/* =====================================
   Logo & Sticky Header
===================================== */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0.25rem;
}
.logo img {
  object-fit: contain;
  display: block;
  max-height: 100%;
  transition: height 260ms cubic-bezier(.4,0,.2,1),
              transform 260ms cubic-bezier(.4,0,.2,1);
  will-change: height, transform;
}

#site-header {
  transition: padding 180ms ease,
              min-height 180ms ease,
              background-color 200ms ease;
}

#site-header.header--small {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  min-height: 4.5rem !important;
}
#site-header.header--small .logo img {
  height: 3.5rem !important;
}

/* Adjust content spacing when header shrinks */
#site-header.header--small + main {
  margin-top: 4.75rem !important;
}

/* Desktop header sizing override */
@media (min-width: 768px) {
  .md\:h-14 {
    height: 3.9rem !important;
  }
  header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: 7rem !important;
  }
}

/* =====================================
   Hamburger Menu
===================================== */
.hamburger-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
}
.hamburger-btn span {
  width: 28px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 767px) {
  .hamburger-btn {
    display: flex;
  }
}

/* =====================================
   Mobile Menu
===================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(23, 26, 27, 0.95);
  display: none;
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  display: flex;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background-color: rgba(25, 35, 38, 0.98);
  display: none;
  flex-direction: column;
  padding: 20px 0;
  z-index: 45;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  padding: 16px 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.mobile-menu a:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}

/* =====================================
   Social Icons
===================================== */
.social-icons {
  display: flex;
  gap: 9px;
  align-items: center;
}
.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #c0ccd5;
}
.social-icon:hover {
  background-color: #fff;
  color: #334852;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.social-icon .material-symbols-outlined {
  font-size: 20px;
}

/* =====================================
   Section Padding Overrides
===================================== */
.py-32 {
  padding-top: 13rem !important;
}
nav.hidden.md\:flex.items-end.gap-10 {
  padding-right: 50px;
}

.co-header { 
    background-color: rgb(25 35 38 / 92%);
}

