/* ===================================== */
/* GLOBAL TYPOGRAPHY & BRAND COLORS */
/* ===================================== */
:root {
  --primary-color: hsl(344, 82%, 21%);
  --accent-color: #B58E1F;
  --light-bg: #fff8e7;
  --dark-text: #1e1e1e;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--dark-text);
  background-color: #ffffff;
}

.logo {
  height: 60px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.highlight {
  color: var(--accent-color);
}


/* ===================================== */
/* NAVBAR STYLING */  
/* ===================================== */
.navbar-bar {
  padding-left: 50px;
}

/* ===================================== */
/* HERO SECTION */
/* ===================================== */
.hero {
  background: url('images/hero.jpg') no-repeat center center;
  background-size: cover;
  min-height: 80vh;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.btn-cta {
  background-color: var(--accent-color);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-cta:hover {
  background-color: #a77d1d;
  color: white;
}

/* ===================================== */
/* CORE SERVICES CARD STYLING */
/* ===================================== */
.shadow-3d {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 12px;
}

.shadow-3d:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* ===================================== */
/* ABOUT SECTION */
/* ===================================== */
.about-section {
  background-color: var(--primary-color);
  padding: 60px 20px;
  color: white;
}

.about-text {
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.section-title {
  color: white;
}

/* ===================================== */
/* FOOTER */
/* ===================================== */
.footer {
  background: #f8f9fa;
  color: #555;
}

.footer-link, .footer-icon {
  color: #555;
  text-decoration: none;
}

.footer-link:hover,
.footer-icon:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

/* ===================================== */
/* SOCIAL SIDEBAR */
/* ===================================== */
.social-sidebar {
  position: fixed;
  top: 30%;
  left: 0;
  z-index: 999;
  flex-direction: column;
  background: white;
  border-radius: 0 10px 10px 0;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.social-sidebar.show {
  transform: translateX(0);
  opacity: 1;
  display: flex !important;
}

.social-sidebar.hidden {
  opacity: 0;
  transform: translateX(-100%);
  display: none !important;
}



/* ===================================== */
/* RESPONSIVE STYLING */
/* ===================================== */

/* Make logo scale on small screens */
@media (max-width: 576px) {
  .logo {
    height: 45px;
  }

  .navbar-bar {
    padding-left: 20px;
  }

  .hero {
    min-height: 60vh;
    text-align: center;
    padding: 40px 10px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .btn-cta {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .about-section {
    padding: 40px 15px;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .service-img {
    height: 180px;
  }

  .footer {
    text-align: center;
  }

  .footer .col-md-4 {
    margin-bottom: 20px;
  }

  .social-sidebar {
    display: none; /* Hide sidebar on mobile */
  }
}

/* Tablet adjustments */
@media (max-width: 768px) {
  .navbar-social {
    margin-top: 10px;
    justify-content: center;
  }

  .hero .container {
    padding: 0 20px;
  }

  .shadow-3d {
    margin-bottom: 30px;
  }
}

.hidden {
  display: none !important;
}

header.navbar {
  position: relative;
  z-index: 1000;
}

