/* ===== Navbar with Background Image ===== */
.custom-navbar {
  background: url("images/uav.jpeg")
               center center / cover no-repeat; /* shows full image */
  background-color: #000; /* fills empty space around image */
  height: 250px;
  position: relative;
  border: none; /* removes blue border */
  background-attachment: scroll;
}

/* Dark overlay for readability */
.custom-navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 0;
}

.custom-navbar .container-fluid {
  position: relative;
  z-index: 1;
}

/* ===== Nav Links ===== */
.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0d6efd !important;
}

/* ===== Yellow Request a Quote Button ===== */
.btn-warning {
  background-color: #ffc107;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  color: #000 !important;
  transition: background-color 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
  color: #000 !important;
}
/* ===== end of navbar */

/* ===== Featured Projects Section (Navy Blue Theme) ===== */
#projects {
  background-color: #001f3f; /* dark navy blue */
  color: #ffffff;
  padding: 4rem 0;
}

#projects h2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

#projects .project-card {
  background-color: transparent;
  border: none;
  text-align: center;
  padding: 1.5rem;
}

#projects .project-card h4 {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  color: #ffffff;
  margin-top: 10px;
}

#projects .project-card p {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0; /* softer white for readability */
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

#projects .project-card video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid #ffffff33; /* subtle white border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#projects .project-card video:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}


/* Optional: spacing between project cards */
#projects .col-md-6 {
  margin-bottom: 2rem;
}

/* ===== End of Featured Projects Section ===== */

 

/* ===== Project Gallery Section ===== */
.project-gallery {
  background-color: #ffffff;
  color: #000000;
}

.project-gallery h2 {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background-color: #f0f0f0;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}


/* ===== End of Project Gallery Section ===== */


/* ===== About Section ===== */
.about-section {
  background-color: #ffffff;
  color: #000000;
}

.about-section h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-logo {
  max-width: 250px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-logo:hover {
  transform: scale(1.05);
}
.about-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #212529; /* Bootstrap text color */
}

/* =====End of About Section ===== */

/*====photographer packeages ====*/
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Typography for Photography Packages Section */
#packages p {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif; /* match your site’s main font */
  font-size: 1rem; /* adjust to match your base body text */
  line-height: 1.6;
  color: #555; /* subtle gray for readability */
  margin-bottom: 1rem;
}

/* Optional: make section intro slightly larger */
#packages .section-intro {
  font-size: 1.1rem;
  color: #444;
}

/* Optional: card text refinement */
#packages .card-text {
  font-size: 0.95rem;
  color: #666;
}

/*====end of photographer packeages ====*/

/*====icons for socials ====*/
/* ===== Social Media Section (Clean Video Background) ===== */
.social-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #000; /* fallback if video fails to load */
}

.social-section .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: brightness(60%); /* darken video slightly for contrast */
  backface-visibility: hidden; /* prevents flickering artifacts */
  will-change: transform; /* improves rendering stability */
}

.social-section .content-wrapper {
  position: relative;
  z-index: 1;
  padding: 4rem 1rem;
}

.social-section .social-icons a {
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-section .social-icons a:hover {
  transform: scale(1.1);
  color: #ffc107;
}
/* Remove underline and unwanted artifacts from social links */
.social-section .social-icons a {
  text-decoration: none !important;
  border: none;
  outline: none;
  display: inline-block;
  color: #fff;
}

.social-section .social-icons a:focus,
.social-section .social-icons a:active,
.social-section .social-icons a:hover {
  text-decoration: none !important;
  outline: none;
  border: none;
}


/*====end of icons for socials ====*/

