/* Modern Reset and Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000; /* Set background to black */
  color: #fff; /* Changed all text to white */
  line-height: 1.6;
}

header, main, footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: #1db954; /* Spotify/Android green */
  transition: color 0.3s ease;
}

a:hover {
  color: #168f3e;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1db954, #168f3e);
  color: white;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn:hover {
  background: linear-gradient(135deg, #168f3e, #0e6b2d);
  transform: translateY(-3px);
}

/* Header and Navigation */
header {
  background: linear-gradient(135deg, #0f9d58, #34a853); /* Android Green */
  color: white;
  padding: 60px 0;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 3em;
  letter-spacing: 1px;
}

nav {
  margin-top: 15px;
}

nav a {
  color: white;
  margin: 0 15px;
  padding: 10px 18px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(13, 192, 106, 0.1), rgba(3, 148, 85, 0.15)), url('your-hero-image.jpg') center/cover no-repeat;
  color: white; /* Changed text color to white */
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 3.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.3em;
  margin-bottom: 30px;
}

/* Main Content Sections */
main {
  padding: 50px 20px;
  background-color: #055e35; /* Set background to same green as footer */
}

section {
  margin-bottom: 50px;
  background: rgba(5, 94, 53, 0.8); /* Same green color as footer with slight transparency */
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

section h2 {
  color: #1db954;
  border-bottom: 3px solid #1db954;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

/* Testimonials */
.testimonials blockquote {
  background-color: rgba(0, 0, 0, 0.8); /* Black background with transparency */
  padding: 25px;
  border-left: 6px solid #1db954;
  margin-bottom: 25px;
  font-style: italic;
  border-radius: 8px;
}

/* Contact Info */
.contact-info p {
  margin-bottom: 18px;
  font-size: 1.1em;
}

/* Footer */
footer {
  text-align: center;
  padding: 25px 0;
  background-color: #055e35;
  color: white;
  border-radius: 12px 12px 0 0;
}

/* Form (contact.html) */
.form {
  display: grid;
  gap: 18px;
}

.form label {
  font-weight: bold;
}

.form input,
.form textarea {
  padding: 16px;
  border: 2px solid #ccebd8;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.form input:focus,
.form textarea:focus {
  border-color: #1db954;
  outline: none;
}

.form button {
  background: linear-gradient(135deg, #1db954, #168f3e);
  color: white;
  padding: 16px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form button:hover {
  background: linear-gradient(135deg, #168f3e, #0e6b2d);
}

/* Collage Gallery */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* tighter collage effect */
  gap: 10px; /* smaller gaps for tighter layout */
  padding: 20px;
  position: relative;
  z-index: 1;
}

/* Individual Gallery Items */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Image */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(95%);
  border-radius: 12px;
}

/* Pop-out effect on hover */
.gallery-item:hover {
  transform: scale(1.5); /* makes it pop larger */
  z-index: 99; /* brings to front */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* deep shadow to "float" */
}

/* Optional image enhancements on hover */
.gallery-item:hover img {
  filter: brightness(105%) saturate(120%);
  transform: scale(1.05); /* subtle inner zoom to add depth */
}

/* Optional caption revealed on hover */
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  font-size: 0.9em;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 0 12px 12px;
}

/* Show caption when hovering */
gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* See More / See Less link styling */
.see-more-link {
  color: #007bff;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 5px;
  transition: color 0.3s ease;
  font-weight: bold;
}

.see-more-link:hover {
  color: #0056b3;
}

/* Optional: Make the description look nice */
.description {
  margin-top: 10px;
  font-size: 0.95em;
  color: #fff; /* Set description text to white */
}

.banner-image {
  width: 100%; /* Makes the image span the full width of the container */
  height: auto; /* Ensures the aspect ratio is preserved */
  display: block; /* Removes any extra space below the image */
}

.social-media {
  display: flex;
  gap: 20px; /* Space between icons */
  justify-content: center; /* Center the icons */
  margin-top: 20px;
}

.social-media a {
  font-size: 30px; /* Size of the icons */
  color: #fff; /* Changed icon color to white */
  text-decoration: none; /* Remove underline */
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #007bff; /* Hover color */
}

.social-media i {
  margin-right: 10px; /* Space between icon and text */
}

/* Basic Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #000000; /* Set background to black */
}

/* --- Booking Form Styling --- */
.booking-form {
  display: grid;
  gap: 20px;
  max-width: 600px;
  margin: 30px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  border: 2px solid rgbargb(0, 255, 8);
}

/* Labels */
.booking-form label {
  font-weight: bold;
  color: #000000; /* black text for labels */
  font-size: 1.1em;
}

/* Select & Input Fields */
.booking-form select,
.booking-form input[type="service"],
.booking-form input[type="date"],
.booking-form input[type="time"] {
  padding: 15px;
  border-radius: 8px;
  border: 2px solid rgbargb(0, 255, 8);
  width: 100%;
  box-sizing: border-box;
  background: #f9f9f9;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Focus effect */
.booking-form select:focus,
.booking-form input:focus {
  outline: none;
  border-color: #00ff08;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
}

/* Button */
.booking-form button {
  padding: 15px;
  background: linear-gradient(135deg, #26ff00, #00ff08);
  color: white;
  font-size: 1.2em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

/* Button hover effect */
.booking-form button:hover {
  background: linear-gradient(135deg, #0056b3, #003d80);
  transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-form {
    padding: 20px;
  }
}

/* --- Social Media Icons Modernized --- */
.social-media {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.social-media a {
  font-size: 2.5em;
  color: #fff; /* White text for icons */
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover {
  color: #0056b3;
  transform: scale(1.1);
}

/* --- Optional: Background for Main --- */
main {
  background: #000000; /* Set background to same green as footer */
  padding: 60px 20px;
}

/* Ensure form and content don't stick to edges on small screens */
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* --- Sticky Shrinking Header with Banner Image --- */

/* Main Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px; /* Full banner height */
  background: url('banner.jpg') center center/cover no-repeat;
  display: flex;
  flex-direction: row;
  justify-content: flex-end; /* Keep nav at the bottom of banner */
  align-items: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: height 0.4s ease, padding 0.4s ease;
  background-attachment: fixed; /* Optional: parallax-like effect */
}

/* Header when Shrunk */
header.shrink {
  height: 100px; /* Only navbar height */
  padding-bottom: 0;
  background: rgba(0, 0, 0, 0.85); /* Solid color or dark overlay when shrunk */
  backdrop-filter: blur(8px); /* Optional: modern blur effect */
}

/* Title inside Header */
header h1 {
  color: green;
  margin: 0;
  font-size: 3.5em;
  transition: opacity 0.3s ease, font-size 0.3s ease;
}

/* Hide title when header shrinks */
header.shrink h1 {
  opacity: 0;
  font-size: 0;
  visibility: hidden;
}

/* Navigation bar */
nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  transition: padding 0.3s ease;
}

/* Navigation links */
nav a {
  color: white;
  padding: 10px 18px;
  border-radius: 20px;
  transition: background-color 0.3s ease;
  font-weight: bold;
  font-size: 1.1em;
}

/* Hover Effect */
nav a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Main content adjustment so it doesn't hide under header */
main {
  margin-top: 150px; /* Adjust to match header height */
}

/* Optional: Make it responsive */
@media (max-width: 768px) {
  header {
    height: 180px;
  }
  header.shrink {
    height: 70px;
  }
  header h1 {
    font-size: 2em;
  }
}
/* --- General Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Body and Text --- */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #f9f9f9;
  padding: 0;
  margin: 0;
}

/* --- Header and Navigation --- */
header {
  background-color: #333;
  color: green;
  padding: 15px;
  text-align: center;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  display: inline-block;
}

header nav {
  margin-top: 10px;
}

/* --- Product Cards --- */
.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  gap: 20px;
  padding: 20px;
}

.product-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

/* --- Buttons --- */
.btn-buy {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 10px;
  text-align: center;
}

.btn-buy:hover {
  background-color: #218838;
}

/* --- Footer --- */
footer {
  background: #333;
  color: white;
  padding: 15px;
  text-align: center;
}
.map-container {
    width: 100%;
    max-width: 100%;
    margin: 10px auto;
    border-radius: 10px;
    overflow: hidden;
}

