* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 218px;
    font-weight: bold;
    color: white;
}

.logo-img {
    height: 200px;
    width: auto;
}

/* Header */
header {
    background-color: #4fa8c5;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
    margin-top: -60px;
    padding-bottom: -300px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: #f9a826;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

.btn-signup {
    background-color: #2c3e50;
    padding: 10px 25px;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-signup:hover {
    background-color: #1a252f;
}

.menu-icon {
    display: none;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-logout {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: 600;
}
.btn-logout:hover {
    background-color: #c0392b;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #4fa8c5 0%, #88c9a8 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    padding: 60px 50px 100px;
}

/* Clouds */
.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
}

.cloud1 {
    width: 120px;
    height: 50px;
    top: 80px;
    right: 200px;
}

.cloud2 {
    width: 100px;
    height: 40px;
    top: 140px;
    right: 80px;
}

/* Hills */
.hills {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
}

.hill {
    position: absolute;
    bottom: 0;
    border-radius: 50% 50% 0 0;
}

.hill-left {
    left: -100px;
    width: 400px;
    height: 200px;
    background-color: #5a9f5e;
}

.hill-right {
    right: -50px;
    width: 350px;
    height: 180px;
    background-color: #7bc67f;
}

/* Tree */
.tree {
    position: absolute;
    bottom: 120px;
    left: 100px;
}

.tree-trunk {
    width: 30px;
    height: 80px;
    background-color: #d4a574;
    margin: 0 auto;
}

.tree-branches {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid #5a9f5e;
    position: relative;
    left: -45px;
    top: -10px;
}

/* Sun */
.sun {
    position: absolute;
    bottom: 150px;
    left: 250px;
    width: 100px;
    height: 100px;
    background-color: #f9d71c;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(249, 215, 28, 0.6);
}

/* Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 56px;
    color: #a855c4;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 52px;
    color: #7e3a96;
    margin-bottom: 30px;
    font-weight: 700;
}

.discount-tag {
    display: inline-block;
    background-color: #fef08a;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Monkey Character */
.monkey-character {
    position: absolute;
    right: 100px;
    top: 120px;
    width: 400px;
    z-index: 15;
}

.monkey-character img {
    width: 100%;
    height: auto;
    display: block;
}

/* Flashlight Effect */
.flashlight {
    position: absolute;
    right: 250px;
    top: 200px;
    width: 80px;
    height: 60px;
}

.flashlight-body {
    width: 50px;
    height: 50px;
    background-color: #5a67d8;
    border-radius: 10px;
    position: relative;
    transform: rotate(-15deg);
}

.flashlight-light {
    position: absolute;
    left: -120px;
    top: 10px;
    width: 150px;
    height: 30px;
    background: linear-gradient(
        90deg,
        rgba(249, 215, 28, 0.8) 0%,
        rgba(249, 215, 28, 0) 100%
    );
    border-radius: 50%;
    transform: skewY(-10deg);
}

/* Quote Box */
.quote-section {
    background-color: #7e3a96;
    padding: 20px 50px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 20;
}

.quote-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.quote-form {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.form-group select,
.form-group input {
    border: none;
    background: transparent;
    font-size: 16px;
    flex: 1;
    outline: none;
    color: #666;
}

.icon {
    color: #666;
    font-size: 20px;
}

.btn-quote {
    background-color: #10b981;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-quote:hover {
    background-color: #059669;
}

.multiple-shipments {
    width: 100%;
    text-align: right;
    margin-top: 10px;
    font-size: 14px;
    color: white;
}

/* Reviews */
.reviews {
    background-color: rgba(90, 159, 94, 0.3);
    padding: 20px 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.stars {
    color: #fbbf24;
    font-size: 24px;
}

.review-text {
    font-size: 16px;
    color: #2c3e50;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
    }

    .menu-icon {
        display: block;
    }

    .hero {
        padding: 40px 20px 80px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .monkey-character {
        right: 20px;
        top: 250px;
        width: 250px;
    }

    .quote-section {
        padding: 20px;
    }

    .quote-form {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }
}

/* Login Page */
.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 60px);
    background: #f7f9fb;
}

.login-card {
    background: white;
    padding: 40px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-card input[type="email"],
.login-card input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.login-card .btn-signup {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-card .btn-signup:hover {
    background: #2980b9;
}

.btn-back {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: #555;
    font-size: 14px;
    transition: color 0.2s;
}

.btn-back:hover {
    color: #000;
}

/*Locate me form on home page */
.location-section {
    background-color: #6b3fa0; /* same purple */
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.location-section h2 {
    margin-bottom: 20px;
    font-weight: bold;
}

.input-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.input-row input {
    padding: 10px;
    border-radius: 6px;
    border: none;
    width: 200px;
    text-align: center;
    font-size: 15px;
}

.btn-locate {
    background-color: #2ecc71;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.btn-locate:hover {
    background-color: #27ae60;
}

.btn-search {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
.btn-search:hover {
    background-color: #2c82c9;
}

/* Searched Results*/
.results-section {
    background: #f9fafb;
    padding: 40px 0;
}

.results-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.laundry-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h3 {
    color: #4fa8c5;
    margin: 0;
}

.map-btn {
    background-color: #4fa8c5;
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.map-btn:hover {
    background-color: #3a90ad;
}

.feature-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.feature-list li {
    background: #e7f6f9;
    padding: 6px 10px;
    border-radius: 5px;
    color: #2b6777;
    font-size: 14px;
}
 /*LAunfry search results*/
 .laundry-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px 30px;
    margin-bottom: 30px;
    transition: transform 0.2s ease-in-out;
}

.laundry-card:hover {
    transform: scale(1.01);
}

.laundry-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.laundry-card h3 {
    color: #0077aa;
    font-weight: 700;
    margin: 5px;

}

.map-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.map-btn:hover {
    background: #217dbb;
}

.laundry-card h4 {
    margin-top: 15px;
    font-weight: 700;
    font-size: 16px;
}

.laundry-card p {
    margin: 7px 0;
    font-size: 14px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 8px;
    padding-left: 0;
    list-style: none;
    margin-top: 10px;
}

.feature-list li {
    background: #eaf7fd;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 14px;
}


/* 🌸 FILTER SECTION STYLING */
.filter-form {
    margin-top: 10px;
    background-color: #6b3fa0; /* purple background to match your hero section */
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.filter-form h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.filter-container label {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    user-select: none;
}

/* Hover effect */
.filter-container label:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Checkbox hidden, use custom design */
.filter-container input[type="checkbox"] {
    display: none;
}

/* Checked State */
.filter-container input[type="checkbox"]:checked + span {
    background: #4fa8c5;
    color: white;
    font-weight: 600;
    box-shadow: 0 0 8px rgba(79, 168, 197, 0.6);
}

/* When checked — highlight the label */
.filter-container label:has(input:checked) {
    background: #4fa8c5;
    color: #fff;
    box-shadow: 0 0 8px rgba(79, 168, 197, 0.7);
}

/* Optional filter submit button */
.btn-filter {
    margin-top: 15px;
    background: #00b894;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease;
}

.btn-filter:hover {
    background: #019875;
}

.status-open {
  color: #1a7f37; /* soft green */
  font-weight: 600;
  margin-left: 6px;
}

.status-closed {
  color: #dc2626; /* soft red */
  font-weight: 600;
  margin-left: 6px;
}

/*Result settings */
.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 25px;
    padding-left: 0;
    list-style: none;
}

.feature-grid li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-grid li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: bold;
}


/* 🌐 MOBILE MENU DROPDOWN */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 80px; /* Just below header */
  right: 20px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 12px;
  z-index: 999;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-menu.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a,
.mobile-menu button {
  text-align: left;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 12px;
  margin: 4px 0;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background-color: #f0f0f0;
}

/* 🧱 Responsive tweak */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .menu-icon {
    display: block;
    font-size: 26px;
    background-color: rgba(255, 255, 255, 0.25);
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
  }
}
.mobile-logout-form {
  display: block !important;
  width: 100%;
  margin-top: 6px;
}

.mobile-logout-form button {
  width: 100%;
  display: block;
  background-color: #e74c3c;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.2s ease;
}

.mobile-logout-form button:hover {
  background-color: #c0392b;
}


/*Settings page*/
.alert {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 15px;
}

.alert-success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #81c784;
}

.alert-danger {
  background-color: #ffe5e5;
  color: #b71c1c;
  border: 1px solid #f5c2c7;
}


/*Tedsting*/
/* ---------- Base Card ---------- */
.store-card {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 22px 0;
    margin-bottom: 28px;
    font-family: Arial, Helvetica, sans-serif;
    color: #111;
    line-height: 1.45;
}

/* ---------- Header ---------- */
.store-header {
    margin-bottom: 10px;
}

.store-name {
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
}

.store-address {
    font-size: 14.5px;
    color: #333;
    margin-bottom: 3px;
}

.store-phone, .store-website {
    font-size: 13.5px;
    color: #333;
    margin: 2px 0;
}

.store-phone a, .store-website a {
    color: #00040b;
    text-decoration: underline;
}

.directions-link {
    display: inline-block;
    color: #010611;
    text-decoration: underline;
    font-size: 13.5px;
    margin-top: 4px;
}

/* ---------- Hours ---------- */
.store-hours {
    font-size: 14px;
    margin-top: 6px;
}

.status-open {
    color: green;
    font-weight: 600;
    margin-left: 5px;
}

.status-closed {
    color: red;
    font-weight: 600;
    margin-left: 5px;
}

/* ---------- Section Headings ---------- */
.store-section {
    margin-top: 14px;
}

.store-section h3 {
    font-size: 15px;
    color: #111;
    font-weight: 600;
    margin-bottom: 6px;
}

/* ---------- Feature Grid ---------- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px 14px;
    font-size: 13.5px;
    color: #222;
    margin-top: 2px;
}

.feature-grid div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.tick {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
}

/* ---------- Responsive ---------- */

/* Tablet (2 columns) */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px 12px;
    }

    .store-name {
        font-size: 17px;
    }
}

/* Mobile (1 column) */
@media (max-width: 600px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 6px 0;
    }

    .store-card {
        padding: 16px 0;
    }

    .store-name {
        font-size: 16px;
    }

    .store-address, .store-phone, .store-website {
        font-size: 13px;
    }

    .directions-link {
        font-size: 12.5px;
    }

    .store-section h3 {
        font-size: 14px;
    }
}


/*Clouds*/
/* 🌥 CLOUD LAYER - Parcel Monkey Replica */
.clouds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1; /* stays behind your hero text, sun, and monkey */
}

/* ☁️ Individual Cloud Styling */
.cloud {
  position: absolute;
background: url('../images/clouds.png') no-repeat center;
  background-size: contain;
  opacity: 0.85;
  will-change: transform;
  animation: cloudDrift linear infinite;
  pointer-events: none; /* prevent any click interference */
}

/* 🎯 Cloud Positions and Motion */
.cloud1 {
  top: 90px;
  left: -130px;
  width: 240px;
  height: 120px;
  animation-duration: 130s;
  animation-delay: 0s;
}

.cloud2 {
  top: 180px;
  left: -400px;
  width: 200px;
  height: 100px;
  opacity: 0.7;
  animation-duration: 160s;
  animation-delay: 20s;
}

.cloud3 {
  top: 60px;
  left: -700px;
  width: 180px;
  height: 90px;
  opacity: 0.6;
  animation-duration: 180s;
  animation-delay: 10s;
}

.cloud4 {
  top: 140px;
  left: -900px;
  width: 280px;
  height: 130px;
  opacity: 0.5;
  animation-duration: 200s;
  animation-delay: 5s;
}

/* 🌬 Soft floating motion */
@keyframes cloudDrift {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(65vw) translateY(-10px);
  }
  100% {
    transform: translateX(130vw) translateY(0);
  }
}

/* 📱 Responsive Clouds (Tablet + Mobile) */
@media (max-width: 1024px) {
  .cloud {
    opacity: 0.7;
  }
  .cloud1 { width: 200px; top: 60px; }
  .cloud2 { width: 160px; top: 130px; }
  .cloud3 { width: 140px; top: 90px; }
  .cloud4 { width: 200px; top: 160px; }
}

@media (max-width: 768px) {
  .cloud {
    opacity: 0.6;
  }
  .cloud1 { width: 140px; top: 50px; animation-duration: 100s; }
  .cloud2 { width: 120px; top: 100px; animation-duration: 120s; }
  .cloud3 { width: 100px; top: 70px; animation-duration: 130s; }
  .cloud4 { width: 150px; top: 140px; animation-duration: 150s; }
}

@media (max-width: 480px) {
  .cloud {
    opacity: 0.5;
  }
  .cloud1 { width: 100px; top: 40px; }
  .cloud2 { width: 90px; top: 80px; }
  .cloud3 { width: 80px; top: 60px; }
  .cloud4 { width: 120px; top: 120px; }
}
