/*
Theme Name: NMD Drone Theme
Theme URI: http://nmd-drone.local
Description: Custom WordPress theme for NMD Drone 4 Hire, featuring a responsive Bootstrap 5 architecture.
Version: 1.0.0
Author: Webart Technology
Text Domain: nmd-drone-theme
*/

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

/* Custom Hero Section */
.hero-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/drone-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
  z-index: 0;
}

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

.hero-section h1 {
  color: #e0e1dd;
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.hero-section p.lead {
  color: #e0e1dd;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.btn-primary-custom {
  background-color: #e63946;
  border-color: #e63946;
  color: #fff;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #d62828;
  border-color: #d62828;
  color: #fff;
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

/* Section styling */
.section-padding {
  padding: 80px 0;
}

.card-custom {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.card-custom:hover {
  transform: translateY(-5px);
}

/* Footer */
.site-footer {
  background-color: #0d1b2a;
  color: #fff;
  padding: 40px 0 20px;
}

.site-footer a {
  color: #e0e1dd;
  text-decoration: none;
}

.site-footer a:hover {
  color: #e63946;
}