:root {
  --primary-color: #0f509d;
  --secondary-color: #4ecdc4;
  --text-color: #0f509d;
  --light-gray: #a9e646;
  --white: #ffffff;
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray);
}

/* Header & Navigation */
header {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 130px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.logo h1 {
  font-size: 2rem;
  color: var(--primary-color);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  height: calc(100vh - 0px);
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
              url('../images/Screenshot_2025-02-22-15-11-39-105_com.instagram.android.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(169, 230, 70, 0.3); /* Light version of --light-gray */
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  padding-top: 130px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--primary-color);
  background-color: rgba(255, 255, 255, 0.5);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  margin-top: 2rem;
  transition: transform 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
}

/* Services Section */
.services {
  padding: 5rem 1rem;
  background: var(--light-gray);
}

.services h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  color: var(--text-color);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.grooming-card {
  background: linear-gradient(to bottom right, var(--white), #f0f9e8);
  border-left: 4px solid var(--primary-color);
}

.grooming-card i {
  color: var(--primary-color);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.grooming-card h3 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.grooming-card .pricing {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 80, 157, 0.2);
}

.grooming-card .pricing h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.grooming-card .pricing ul {
  list-style: none;
  padding: 0;
}

.grooming-card .pricing li {
  color: var(--text-color);
  padding: 0.3rem 0;
  font-weight: 500;
}

.service-description {
  margin: 1.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: left;
}

.service-description p {
  margin-bottom: 1rem;
}

/* About Section */
.about {
  display: none;
}

/* Gallery Section */
.gallery {
  padding: 5rem 1rem;
  background: var(--white);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
}

.modal-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
}

/* Contact Section */
.contact {
  padding: 5rem 1rem;
  background: var(--light-gray);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, select, textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

textarea {
  height: 150px;
}

button {
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #0d4589;
}

.contact-info {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* File Upload Styling */
.file-upload {
  display: none;
}

#preview-container {
  display: none;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 2rem 1rem;
  text-align: center;
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  color: var(--white);
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-color);
}

/* Paw Print */
.paw-print {
  position: fixed;
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
}

#paw-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2rem;
  }
  
  nav ul {
    display: none;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}