/* General Styling */
.week-nav a {
    background-color: #2d800a; /* Burnt orange */
    color: white !important;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-block;
}

.week-nav a:hover {
    background-color: #19d15d; /* Darker burnt orange */
}

h1 {
    font-weight: bold;
    letter-spacing: 2px;
    text-outline: 2px 2px 4px white;
}

h2 {
    font-weight: bold;
    letter-spacing: 2px;
}
h2 {
    animation: fadeIn 2.5s ease-in;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.availability-header {
    margin-top: 0;
    padding-top: 0;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    text-align: center;
    max-width: 900px;
    position: relative;
}

.sub-title {
    font-size: 1.6rem;
    text-shadow: 0 0 8px #81e6d9;
    margin-bottom: 1rem;
}

.home-icon a {
  display: inline-block;
  padding: 0.6rem;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
  background-color: transparent;
}

.home-icon a:hover {
  background-color: #3a5a40; /* soft neon aqua */
  transform: scale(1.2);
}

.home-icon i {
  font-size: 2rem;
  color: #0ff;
  text-shadow: 0 0 6px #0ff, 0 0 12px #0ff;
  transition: text-shadow 0.3s ease;
}

.home-icon a:hover i {
  text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}



.services-section-with-bg {
  position: relative;
  overflow: hidden;
}

.services-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/garden_maintanance_Background.jpg') no-repeat center center;
  background-size: cover;
  animation: flyaround 240s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;

}

@keyframes flyaround {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(3) translate(-10px, 10px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.booking-content {
    background: rgba(255, 255, 255, 0.85); /* semi-transparent white */
    border-radius: 12px;
    padding: 20px;
    position: relative;

}

/* Optional: make text pop better against image */
.booking-content .neon-text,
.booking-content h5 {
    text-shadow: 0 0 5px rgba(0,0,0,0.7), 0 0 10px rgba(0,0,0,0.5);
}

.day-column.weekend {
    background: linear-gradient(to bottom, #1a1a2e, #16213e); /* Deep space blues */
    border: 1px solid #7f9cf5; /* Soft blue border */
    box-shadow: 0 0 15px rgba(127, 156, 245, 0.3);
}

.day-column.weekend h5 {
    color: #c3dafe; /* Pale sky blue */
    text-shadow: 0 0 2px #a3bffa;
    border-bottom: 1px solid #a3bffa; /* Update this line */
}


.time-slot.available:hover {
    background-color: #85b850; /* A bit brighter green */
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(108, 158, 59, 0.6);
}

.day-column h5 {
    margin-bottom: 16px;
    font-size: 1.3em;
    color: #b2f5ea;
    text-shadow: 0 0 3px #81e6d9;
    border-bottom: 1px solid #81e6d9;
    padding-bottom: 8px;
}

.day-column {
    background: linear-gradient(to bottom, #0a0a0a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0, 255, 100, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.time-slot.booked {
    background-color: #333; /* Dark grey to mute it */
    color: #aaa; /* Lighter grey text */
    cursor: not-allowed;
    text-decoration: line-through;
    font-style: italic;
}


body {
    background: linear-gradient(to right, #2e8b57, #3a5a40); /* Deep green gradient */
    font-family: 'Arial', sans-serif;
    color: #333; /* Dark grey text */
    background-size: cover; /* Ensures the background scales to fit the screen */
    background-position: center; /* Centers the SVG */
    background-repeat: no-repeat; /* Prevents tiling */
    background-attachment: fixed; /* Keeps the background fixed while scrolling */
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Container for the whole page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.booking-content {
    background: none;
    padding: 0;
    box-shadow: none;
}




/* Neon Text */
.neon-text {
    color: #b2f5ea; /* soft mint */
    text-shadow: 0 0 1px #b2f5ea, 0 0 2px #81e6d9;
}


/* Timetable Styling */
.timetable {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.day-column {
    width: 200px;
    text-align: center;
    padding: 15px;
    background-color: black;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.day-column:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.day-column h5 {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 1.2em;
}

/* Time slot styling */
.time-slot {
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    background-color: #6c9e3b; /* Muted green for available slots */
    color: white;
    transition: background-color 0.3s, transform 0.3s;
}

@media (max-width: 768px) {
    .day-column {
        width: 100%;
        max-width: 300px;
    }

    .timetable {
        gap: 15px;
    }

    .container {
        padding: 10px;
    }
}
.gnome-popup {
    display: none; /* Ensure popup is hidden by default */
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: rgba(34, 139, 34, 0.95);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 255, 100, 0.6);
    z-index: 100;
    max-width: 250px;
    animation: popIn 0.3s ease-out forwards;
}

@keyframes popIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.sneaky-gnome {
    position: absolute;
    bottom: 50px;
    right: 20px;
    width: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
}

.sneaky-gnome:hover {
    transform: scale(1.2) rotate(5deg);
}

.sneaky-gnome img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}
.gnome-popup button {
    margin-top: 10px;
    background-color: #6c9e3b; /* Matching green color */
    border: none;
    padding: 8px 16px; /* Slightly larger padding for better button size */
    border-radius: 12px; /* Rounded corners */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.gnome-popup button:hover {
    background-color: #4a7c2f; /* Darker green on hover */
    transform: scale(1.1); /* Slightly grow the button on hover */
}

.gnome-popup button:focus {
    outline: none; /* Remove the focus outline */
}