html, body {
  margin: 0;
  padding: 0;
  padding-bottom: 70px !important;
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #0d1628, #162447, #0b1222);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: #d9e2f0;
  display: flex;
  flex-direction: column;
}

.glassy-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 40, 70, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 999;
  padding: 0;
}

.contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 15px;
  font-size: 0.9em;
  color: #a7c4e3;
}

.contact-left span {
  margin: 0 10px;
}

.brand-title {
  font-size: 1.6em;
  color: #bfe2ff;
  font-weight: 600;
  text-shadow: 0 0 8px rgba(150, 200, 255, 0.4);
  padding: 8px 0 12px 0;
  text-align: center;
}

.sidebar {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.submenu {
  position: relative;
  width: 100%;
}

.submenu-toggle {
  display: block;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  font-weight: 600;
  text-align: center;
  padding: 12px 15px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submenu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.submenu-content {
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  margin-left: 10px;
  border-radius: 6px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.submenu-content a {
  padding: 10px 25px;
  display: block;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
  transition: background 0.2s;
}

.submenu-content a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.submenu.open .submenu-content {
  display: flex;
}

.submenu-toggle.active,
.submenu.open .submenu-toggle {
  background: rgba(255, 255, 255, 0.1);
}


.glassy-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 180px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(12, 18, 30, 0.55);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: -4px 0 18px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  transition: right 0.3s ease;
}

.glassy-sidebar a {
  color: #cfe6ff;
  font-size: 0.95em;
  padding: 14px 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.glassy-sidebar a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transform: translateX(-3px);
}

.glassy-sidebar a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 600;
  box-shadow: inset 3px 0 0 #66aaff;
}

.content {
  margin: 140px 180px 60px 40px;
  flex-grow: 1;
}

.home h2 {
  color: #82c9ff;
  font-size: 2em;
  margin-bottom: 5px;
}

.home p {
  color: #d1d7e2;
}

.logo {
  display: block;
  margin: 30px auto;
  width: 250px;
  border-radius: 0;
  box-shadow: none;
  background: none !important;
}

.logo, 
.logo * {
  background: none !important;
  box-shadow: none !important;
}

.logo-container, .card, .logo-box {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

.pet-gallery {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.pet-card {
  background: rgba(25, 40, 70, 0.65);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  width: 200px;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.pet-card:hover {
  transform: scale(1.05);
  background: rgba(35, 55, 100, 0.8);
}

.pet-card img {
  width: 100%;
  border-radius: 10px;
}

.glassy-footer {
  flex-shrink: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  width: calc(100% - 180px);
  height: 50px;
  background: rgba(20, 35, 60, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a9c6e8;
  font-size: 0.9em;
  text-shadow: 0 0 6px rgba(180, 220, 255, 0.3);
  z-index: 998;
}

.glassy-footer p {
  margin: 0;
  letter-spacing: 0.4px;
}

.intro-section {
  text-align: center;
  padding: 40px 20px;
  animation: fadeIn 1.5s ease;
}

.intro-text {
  color: #b8cbe0;
  max-width: 700px;
  margin: 10px auto 20px auto;
  font-size: 1.1em;
  line-height: 1.6em;
}

.about-section, .highlight-section, .cta-section {
  background: rgba(20, 35, 60, 0.35);
  margin: 40px auto;
  padding: 25px 30px;
  border-radius: 16px;
  max-width: 900px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
}

.about-section h3, .highlight-section h3, .cta-section h3 {
  color: #81c8ff;
  font-size: 1.7em;
  text-align: center;
  margin-bottom: 15px;
}

.about-section p, .highlight-section p, .cta-section p {
  color: #c7d5ea;
  line-height: 1.6;
  text-align: center;
}

.pet-showcase {
  text-align: center;
  margin-top: 40px;
}

.quote-box {
  text-align: center;
  font-style: italic;
  color: #a4c8f7;
  margin-top: 20px;
  border-left: 3px solid #4f90d9;
  padding-left: 15px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #4a91ff, #5cc8ff);
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, #67a8ff, #80d4ff);
  transform: translateY(-3px);
}

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

.about {
  margin: 140px 180px 80px 40px;
  flex-grow: 1;
  animation: fadeIn 1.2s ease;
}

.about-hero {
  text-align: center;
  padding: 40px 20px 30px;
  background: rgba(20, 35, 60, 0.35);
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
}

.about-hero h2 {
  color: #81c8ff;
  font-size: 2.2em;
  margin-bottom: 15px;
}

.about-intro {
  color: #c7d5ea;
  font-size: 1.1em;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-section {
  background: rgba(25, 40, 70, 0.5);
  padding: 25px 30px;
  border-radius: 14px;
  box-shadow: 0 0 14px rgba(0,0,0,0.3);
}

.about-section h3 {
  color: #82c9ff;
  font-size: 1.6em;
  margin-bottom: 10px;
  text-align: center;
}

.about-section p {
  color: #c8d6ea;
  line-height: 1.6em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-quote {
  text-align: center;
  font-style: italic;
  color: #a4c8f7;
  margin-top: 20px;
  border-left: 3px solid #4f90d9;
  padding-left: 15px;
  display: inline-block;
}

.about-cta {
  background: rgba(20, 35, 60, 0.4);
  text-align: center;
  margin: 60px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
  max-width: 850px;
}

.about-cta h3 {
  color: #81c8ff;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.about-cta p {
  color: #c7d5ea;
  line-height: 1.6;
  margin-bottom: 20px;
}

.gallery {
  margin: 140px 180px 80px 40px;
  flex-grow: 1;
  animation: fadeIn 1.2s ease;
}

.gallery-hero {
  text-align: center;
  background: rgba(20, 35, 60, 0.35);
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
  padding: 40px 20px 25px;
}

.gallery-hero h2 {
  color: #81c8ff;
  font-size: 2.2em;
  margin-bottom: 10px;
}

.gallery-intro {
  color: #c7d5ea;
  font-size: 1.1em;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 50px;
  padding: 0 10px;
}

.gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(25, 40, 70, 0.55);
}

.gallery-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.image-wrap {
  position: relative;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 30, 50, 0.7);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.image-overlay h4 {
  color: #cfe6ff;
  font-size: 1.2em;
  text-shadow: 0 0 8px rgba(100, 180, 255, 0.6);
}

.gallery-card:hover .image-overlay {
  opacity: 1;
}

.gallery-footer {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background: rgba(20, 35, 60, 0.4);
  border-radius: 16px;
  box-shadow: 0 0 18px rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  right: 0 !important;
  width: 100% !important;
}

.gallery-footer p {
  color: #c7d5ea;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 22px;
  cursor: pointer;
}

.hamburger span {
  background: #bfe2ff;
  height: 3px;
  width: 100%;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.pet-gallery-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}

.pet-gallery {
  display: flex;
  gap: 25px;
}

.pet-card {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.view-all-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.view-all-link {
  display: inline-block;
  font-weight: bold;
  font-size: 1.2em;
  color: #76c7ff;
  text-decoration: none;
  transition: 0.2s ease;
}

.view-all-link:hover {
  text-decoration: underline;
  color: #a0d8ff;
}

.submenu {
  position: relative;
}

.submenu-toggle {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  color: inherit;
  padding: 10px 15px;
  font-weight: 600;
  cursor: pointer;
}

.submenu-content {
  display: none;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.submenu-content a {
  padding-left: 30px;
}

.submenu.open .submenu-content {
  display: flex;
}

.glassy-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 178px;
  width: calc(100% - 178px);
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 14px 0;
  font-size: 14px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: right 0.3s ease, width 0.3s ease;
}

.cta-section {
  text-align: center;
  padding: 40px 20px;
}

.cta-section h3 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #81c8ff;
}

.link-button {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  color: #0073e6;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #0073e6;
  border-radius: 6px;
  background: transparent;
  transition: all 0.3s ease;
}

.link-button:hover {
  background: #0073e6;
  color: #fff;
}

.cta-button {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background: #0073e6;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #005bb5;
}

.contact-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-right a {
  color: #a7c4e3;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  opacity: 0.85;
}

.contact-right a:hover {
  color: #d9e8ff;
  opacity: 1;
  text-shadow: 0 0 8px rgba(150, 200, 255, 0.6);
}

.about-section,
.highlight-section,
.cta-section,
.about-hero,
.about-cta,
.gallery-hero,
.gallery-footer,
.gallery-card,
.pet-card,
.quote-box,
.about-quote {
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
}

.about-section,
.highlight-section,
.cta-section,
.about-hero,
.about-cta,
.gallery-hero,
.gallery-footer,
.gallery-card,
.pet-card {
    border-radius: 0 !important;
}

.pet-card img,
.gallery-card img {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.about-section,
.highlight-section,
.cta-section,
.about-hero,
.about-cta,
.gallery-hero,
.gallery-footer {
    margin: 20px auto !important;
    padding: 10px 0 !important;
}

.garden,
.intro-section,
.about-section,
.pet-showcase,
.herbs_and_more-posts,
.ham-post,
.modal-wrapper,
.modal-image,
.modal-text,
.modal-wrapper *,
.pet-card,
.pet-card *,
.ham-post *,
.herbs_and_more-posts *,
.pet-gallery-wrapper,
.herbs_and_more-posts h2,
.herbs_and_more-posts article,
.modal-wrapper h2,
.modal-wrapper p {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
}

.ham-post {
    background: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.ham-post img,
.modal-image img,
.pet-card img {
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
}

.ham-post div[style*="linear-gradient"],
.ham-post div[style*="radial-gradient"],
.modal-wrapper {
    background: none !important;
}

#postModal,
#postModal * {
    background: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.ham-post[style],
.pet-card[style] {
    box-shadow: none !important;
}

.garden .intro-section,
.garden .about-section,
.garden .pet-showcase,
.garden .herbs_and_more-posts {
    padding: 20px 0 !important;
    margin: 25px auto !important;
}

.ham-post,
.ham-post * {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.ham-post[style],
.ham-post div[style*="radial-gradient"],
.ham-post div[style*="linear-gradient"] {
    background: none !important;
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  min-width: 100%;
  text-align: center;
  padding: 10px 5px;
}

.carousel-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.carousel-item h4 {
  margin: 8px 0 4px 0;
  font-size: 1.3em;
  color: #bcd8ff;
}

.carousel-item p {
  color: #d8e2f0;
  font-size: 0.95em;
  line-height: 1.4em;
  max-width: 350px;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease;
  z-index: 20;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.2);
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

.carousel-dots {
  text-align: center;
  margin-top: 10px;
}

.carousel-dots .dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: #6c8db5;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dots .dot.active {
  background: #bcd8ff;
}

@media (max-width: 1024px) {
  .glassy-sidebar {
    width: 160px;
    padding-top: 100px;
  }
  .content, .home, .about, .gallery {
    margin: 120px 160px 80px 20px;
  }
  .logo {
    width: 200px;
  }
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
    overflow-x: hidden;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1000;
    transition: transform 0.3s ease;
  }

  .glassy-sidebar {
    right: -180px;
    transition: right 0.3s ease;
    z-index: 900;
  }

  .glassy-sidebar.active {
    right: 0;
  }

  .hamburger.active {
    position: relative;
    z-index: 1100;
    transform: translateX(-10px);
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .content, .home, .about, .gallery {
    margin: 120px 20px 60px 20px;
  }
  .glassy-footer {
    right: 0 !important;
    width: 100% !important;
}
  .pet-gallery {
    gap: 15px;
  }
  .pet-card {
    width: 150px;
    padding: 10px;
  }
  .brand-title {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .brand-title {
    font-size: 1.1em;
  }
  .pet-card {
    width: 130px;
  }
  .about-hero h2, .gallery-hero h2 {
    font-size: 1.4em;
  }
  .cta-button {
    font-size: 0.85em;
  }
}
