/* style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1d1d1b;
  color: white;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1d1d1b;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #7dff00;
}

.nav button {
  background: none;
  color: white;
  border: 2px solid transparent;
  padding: 10px 20px;
  margin-left: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav .cta {
  background-color: #7dff00;
  color: black;
  border: none;
  border-radius: 5px;
}

.nav button:hover {
  border-color: #7dff00;
  color: #7dff00;
  background-color: transparent;
}

.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#heroVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.25;
}

.hero-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 3rem;
  color: #7dff00;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.2rem;
}

.services, .portfolio, .booking {
  padding: 60px 20px;
  text-align: center;
}

.services h2,
.portfolio h2,
.booking h2 {
  font-size: 2.5rem;
  color: #7dff00;
  margin-bottom: 40px;
}

.service-grid, .portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-item, .portfolio-item {
  background-color: #2a2a28;
  border: 2px solid #7dff00;
  border-radius: 8px;
  padding: 30px;
  width: 250px;
  font-size: 1.2rem;
}

.stats {
  background-color: #2a2a28;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
  text-align: center;
}

.stat {
  flex: 1 1 200px;
  max-width: 250px;
}

.stat h3 {
  font-size: 2.5rem;
  color: #7dff00;
}

.stat p {
  font-size: 1rem;
  color: #ccc;
}


blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 700px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}

input, button {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

input {
  background: white;
  color: black;
}

button[type=\"submit\"] {
  background-color: #7dff00;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[type=\"submit\"]:hover {
  background-color: #6cea00;
}
/* Free Offer Section - Columns Style */
.free-offer {
  padding: 60px 20px;
  text-align: center;
  background-color: #1d1d1b;
}

.free-offer h2 {
  font-size: 2.5rem;
  color: #7dff00;
  margin-bottom: 20px;
}

.free-offer p {
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  color: #ddd;
}

.free-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.free-item {
  background-color: #2a2a28;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.free-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #7dff00;
}

.free-item h3 {
  color: #7dff00;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.free-item p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 15px;
}

.free-link {
  display: inline-block;
  padding: 10px 18px;
  background-color: #7dff00;
  color: #1d1d1b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.free-link:hover {
  background-color: #ffffff;
}
.hero-cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: white;
  color: #1d1d1b;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-cta-button:hover {
  background-color: #f0f0f0;
  color: black;
}
.announcement-bar {
  background-color: #7dff00;
  text-align: center;
  padding: 12px 20px;
  position: sticky;
  top: 0;
  z-index: 1000; /* keep above normal content */
}

.announcement-link {
  color: #1d1d1b;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.announcement-link:hover {
  color: black;
}

/* Optional: ensure header scrolls normally */
.header {
  position: relative; /* or static */
  z-index: 999; /* below the announcement */
}


.site-footer {
    background: url("img/backgroundtopo.png") no-repeat center center;
    background-size: cover;
    color: white;
    padding: 30px 40px; /* reduced from 60px */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    font-family: 'Josefin Sans', sans-serif;
    position: relative;
  }
  
  
  .footer-col {
    flex: 1;
    min-width: 220px;
    padding: 20px;
    z-index: 1;
  }
  
  .footer-left {
    text-align: left;
  }
  
  .footer-logo {
    height: 40px;
    margin-bottom: 10px;
  }
  
  .footer-left p {
    font-size: 0.9rem;
    color: #ccc;
  }
  
  .footer-center {
    text-align: center;
  }
  
  .footer-profile {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .footer-handle {
    font-weight: bold;
    margin: 4px 0;
  }
  
  .footer-icons a img {
    width: 22px;
    margin: 0 6px;
    filter: brightness(0.8);
    transition: filter 0.3s;
  }
  .footer-icons a img:hover {
    filter: brightness(1.2);
  }
  
  .footer-right {
    text-align: right;
  }
  
  .footer-right label {
    font-weight: bold;
    font-size: 0.95rem;
    color: white;
  }
  
  .footer-right p {
    font-size: 0.85rem;
    color: #ccc;
    margin: 4px 0 10px;
  }
  
  .subscribe-form {
    display: flex;
    justify-content: flex-end;
  }
  
  .subscribe-form input {
    background-color: #000;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px 0 0 4px;
    width: 180px;
  }
  
  .subscribe-form button {
    background-color: limegreen;
    border: none;
    padding: 8px 14px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1rem;
  }
  .testimonials {
  padding: 60px 20px;
  text-align: center;
  background-color: #1d1d1b;
}

.testimonials h2 {
  color: #7dff00;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.testimonials p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.testimonial-video {
  width: 280px;
  height: 500px;
  border: 2px solid #7dff00;
  border-radius: 12px;
  overflow: hidden;
  background-color: black;
  box-shadow: 0 0 10px rgba(125, 255, 0, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-video:hover {
  transform: scale(1.03);
}

.testimonial-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services {
  padding: 100px 20px;
  background: #1d1d1b;
  text-align: center;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #7dff00;
  margin-bottom: 10px;
}

.section-subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 50px;
}

.service-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}

.service-card {
  background: #2a2a28;
  border: 1px solid #333;
  border-left: 4px solid #7dff00;
  border-radius: 10px;
  padding: 30px 25px;
  width: 300px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(125, 255, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(125, 255, 0, 0.15);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #7dff00;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}
