/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: system-ui, -apple-system, sans-serif;
    background-color: rgb(255, 251, 235);
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .container {
    display: grid;
    grid-template-rows: auto auto 1fr auto auto;
    min-height: 100vh;
  }
  
  /* Navigation */
  nav {
    background-color: rgb(146, 64, 14);
    color: white;
    padding: clamp(0.5rem, 2vw, 1rem);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .nav-content {
    max-width: min(80rem, 95%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-content h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }
  
  .nav-icons {
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
  }
  
  .nav-icons svg {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
  }
  
  .nav-icons svg:hover {
    color: rgb(253, 230, 138);
    transform: scale(1.1);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: clamp(300px, 60vh, 500px);
    color: white;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1425082661705-1834bfd09dca?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
  }
  
  .hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: clamp(1rem, 4vw, 2rem);
  }
  
  .hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-content p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    max-width: 600px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  button {
    background-color: rgb(217, 119, 6);
    color: white;
    border: none;
    padding: clamp(0.5rem, 2vw, 0.75rem) clamp(1.5rem, 4vw, 2rem);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: clamp(0.875rem, 2vw, 1rem);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  button:hover {
    background-color: rgb(180, 83, 9);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }
  
  button:active {
    transform: translateY(0);
  }
  
  /* Hamsters Section */
  .hamsters {
    max-width: min(80rem, 95%);
    margin: 0 auto;
    padding: clamp(2rem, 6vw, 4rem) 1rem;
  }
  
  .hamsters h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 3rem);
    position: relative;
  }
  
  .hamsters h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: rgb(217, 119, 6);
    border-radius: 3px;
  }
  
  .hamster-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 4vw, 2rem);
  }
  
  .hamster-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  
  .hamster-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px -1px rgb(0 0 0 / 0.2);
  }
  
  .hamster-card img {
    width: 100%;
    height: clamp(150px, 30vw, 200px);
    object-fit: cover;
  }
  
  .card-content {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(0.5rem, 2vw, 0.75rem);
  }
  
  .card-header h3 {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
  }
  
  .rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .rating svg {
    width: clamp(16px, 4vw, 20px);
    height: clamp(16px, 4vw, 20px);
    color: rgb(250, 204, 21);
  }
  
  .card-content p {
    color: rgb(75, 85, 99);
    margin-bottom: clamp(0.75rem, 3vw, 1rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  
  .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .price {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: bold;
    color: rgb(217, 119, 6);
  }
  
  /* Contact Section */
  .contact {
    background-color: rgb(146, 64, 14);
    color: white;
    padding: clamp(2rem, 6vw, 4rem) 1rem;
  }
  
  .contact h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    margin-bottom: clamp(2rem, 6vw, 3rem);
    position: relative;
  }
  
  .contact h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
  }
  
  .contact-grid {
    max-width: min(80rem, 95%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    text-align: center;
  }
  
  .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(1rem, 3vw, 1.5rem);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    transition: transform 0.2s;
  }
  
  .contact-item:hover {
    transform: translateY(-5px);
  }
  
  .contact-item svg {
    width: clamp(24px, 6vw, 32px);
    height: clamp(24px, 6vw, 32px);
  }
  
  .contact-item p {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  
  /* Footer */
  footer {
    background-color: rgb(120, 53, 15);
    color: white;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 2rem);
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  
  /* Additional Responsive Adjustments */
  @media (max-width: 480px) {
    .card-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }
  
    .card-footer button {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .nav-content {
      padding: 0 1rem;
    }
    
    .contact-item {
      margin: 0 1rem;
    }
  }
  
  @media (min-width: 2000px) {
    body {
      font-size: 18px;
    }
  
    .container {
      max-width: 1800px;
      margin: 0 auto;
    }
  }     