@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* Brand Palette Variables */
:root {
  --primary-white: #FFFFFF;
  --rustic-copper: #9B5E3C;
  --charcoal-gray: #2B2B2B;
  --accent-black: #0B0B0B;
  --bg-offwhite: #F7F4EF;
  --bg-lightgrey: #EFEDEA;
  --text-dark: #181818;
  --text-muted: #555555;
  --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Futura', sans-serif;
  background-color: var(--primary-white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography Custom Classes */
.font-heading-bold {
  font-family: 'Futura', 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
}

.font-heading-regular {
  font-family: 'Poppins', 'Futura', sans-serif;
  font-weight: 400;
}

.font-quote {
  font-family: 'Lora', serif;
  font-style: italic;
}

.font-metrica {
  font-family: 'Futura', 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--accent-black);
}

::-webkit-scrollbar-thumb {
  background: var(--rustic-copper);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c2723c;
}

/* Selection style */
::selection {
  background-color: var(--rustic-copper);
  color: var(--primary-white);
}

/* Utility Layouts */
.bg-rustic-texture {
  background: linear-gradient(rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 0.85)), 
              url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}

.bg-offwhite-custom {
  background-color: var(--bg-offwhite);
}

/* Premium Header & Nav */
header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 24px 0;
}

header.sticky-header.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(160, 90, 44, 0.3);
}

.nav-link {
  color: var(--primary-white);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--rustic-copper);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--rustic-copper) !important;
}

/* Mobile Nav Menu Overrides */
#mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--accent-black);
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease, visibility 0s linear 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--accent-black);
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) blur(1px);
  transform: scale(1.1);
  transition: transform 10s ease-out;
}

.swiper-slide-active .hero-slide-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 85%;
  text-align: center;
  color: var(--primary-white);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-white);
}

.scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 12px;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.scroll-line-container {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--rustic-copper);
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% { top: -50%; }
  100% { top: 100%; }
}

/* Buttons */
.btn-premium {
  position: relative;
  display: inline-block;
  padding: 14px 34px;
  border: 1px solid var(--rustic-copper);
  background: transparent;
  color: var(--primary-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  z-index: 1;
}

.btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--rustic-copper);
  transition: var(--transition-smooth);
  z-index: -1;
}

.btn-premium:hover::before {
  left: 0;
}

.btn-premium:hover {
  color: var(--primary-white);
  border-color: var(--rustic-copper);
  transform: translateY(-2px);
}

.btn-premium-dark {
  border-color: var(--accent-black);
  color: var(--accent-black);
}

.btn-premium-dark::before {
  background-color: var(--accent-black);
}

.btn-premium-dark:hover {
  color: var(--primary-white);
}

/* Service Cards Custom */
.service-card {
  background-color: var(--primary-white);
  border: 1px solid rgba(13, 13, 13, 0.05);
  padding: 50px 40px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--rustic-copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(160, 90, 44, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-container {
  display: inline-block;
  margin-bottom: 25px;
  color: var(--accent-black);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
  color: var(--rustic-copper);
  transform: scale(1.1) rotate(5deg);
}

/* Collage Section Layout */
.collage-item {
  position: relative;
  overflow: hidden;
  height: 480px;
  cursor: pointer;
}

.collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.collage-item:hover .collage-img {
  transform: scale(1.08);
}

.collage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: var(--primary-white);
  transition: var(--transition-smooth);
}

.collage-item:hover .collage-overlay {
  padding-bottom: 50px;
}

.collage-category {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rustic-copper);
  font-weight: 600;
  margin-bottom: 8px;
}

.collage-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Why Us Section styling */
.why-card {
  padding: 40px;
  border-left: 1px solid rgba(160, 90, 44, 0.2);
  height: 100%;
}

.why-card-icon {
  font-size: 32px;
  color: var(--rustic-copper);
  margin-bottom: 24px;
}

/* Masonry Grid (Glimpse/Projects) */
.filter-btn {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 10px 20px;
  margin: 0 5px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: var(--rustic-copper);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--accent-black);
}

.filter-btn.active::after {
  width: 40%;
}

.grid-item {
  margin-bottom: 30px;
  display: block;
}

.project-item-box {
  position: relative;
  overflow: hidden;
  background-color: var(--accent-black);
  border-radius: 0px;
}

.project-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-item-box:hover .project-item-img {
  transform: scale(1.08) rotate(1deg);
  opacity: 0.6;
}

.project-item-info {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 3;
  opacity: 0;
  transition: var(--transition-smooth);
}

.project-item-box:hover .project-item-info {
  bottom: 0;
  opacity: 1;
}

/* Testimonials custom styles */
.testimonial-card {
  background-color: var(--primary-white);
  border: 1px solid rgba(13, 13, 13, 0.05);
  padding: 50px;
  text-align: center;
  position: relative;
}

.testimonial-quote {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-stars {
  color: var(--rustic-copper);
  margin-bottom: 20px;
}

/* Footer styling */
footer {
  background-color: var(--accent-black);
  color: var(--primary-white);
  border-top: 1px solid rgba(160, 90, 44, 0.2);
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition-smooth);
}

.footer-link:hover {
  color: var(--rustic-copper);
  padding-left: 5px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-white);
  transition: var(--transition-smooth);
  margin-right: 12px;
}

.footer-social-icon:hover {
  background-color: var(--rustic-copper);
  border-color: var(--rustic-copper);
  color: var(--primary-white);
  transform: translateY(-3px);
}

/* Back to top button */
.btn-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  border-radius: 0;
  background-color: var(--rustic-copper);
  color: var(--primary-white);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  border: none;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background-color: var(--accent-black);
  transform: translateY(-5px);
}

/* Section Title Border Lines */
.section-title-container {
  position: relative;
  margin-bottom: 60px;
}

.section-title-line {
  width: 60px;
  height: 2px;
  background-color: var(--rustic-copper);
  margin: 20px auto 0 auto;
}

.section-title-line.left-align {
  margin: 20px 0 0 0;
}

/* Inner Page Hero Styles */
.inner-hero {
  height: 60vh;
  position: relative;
  background-color: var(--accent-black);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.inner-hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  color: var(--primary-white);
}

/* Custom Image Reveal Effect with GSAP */
.reveal-wrapper {
  position: relative;
  overflow: hidden;
}

.reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--rustic-copper);
  z-index: 2;
}

/* Grid Layout custom styles */
.masonry-grid {
  display: flex;
  width: auto;
  margin-left: -15px; /* gutter size offset */
}

.masonry-grid-col {
  padding-left: 15px; /* gutter size */
  background-clip: padding-box;
}

/* Modal styling */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(5px);
}

.custom-modal-content {
  position: relative;
  background-color: var(--primary-white);
  margin: 5% auto;
  padding: 0;
  width: 70%;
  max-width: 1000px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  border: 1px solid rgba(160, 90, 44, 0.3);
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 15px;
  color: var(--primary-white);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.close-modal:hover {
  color: var(--rustic-copper);
}

/* Form Styles */
.form-control-premium {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(13, 13, 13, 0.15);
  border-radius: 0;
  padding: 15px 5px;
  font-size: 14px;
  font-family: 'Poppins', 'Futura', sans-serif;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.form-control-premium:focus {
  background: transparent;
  outline: none;
  border-bottom-color: var(--rustic-copper);
  box-shadow: none;
}

.form-control-premium-dark {
  color: var(--primary-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.form-control-premium-dark:focus {
  color: var(--primary-white);
  border-bottom-color: var(--rustic-copper);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  header.sticky-header {
    padding: 15px 0;
  }
  .collage-item {
    height: 350px;
  }
  .testimonial-card {
    padding: 30px;
  }
  .custom-modal-content {
    width: 90%;
    margin: 15% auto;
  }
}

@media (max-width: 575.98px) {
  .font-metrica {
    letter-spacing: 0.2em;
  }
  .collage-item {
    height: 300px;
  }
  .Logo_size img{
  height: 60px !important; 
}
}

.Logo_size img{
  height: 83px;
}
