
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5fdf7;
    color: #222;
}

.site-header {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.site-header .branding {
    display: flex;
    align-items: center;
}

.logo, .dog-image {
    height: 60px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    gap: 15px;
}


nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
}

input, textarea {
    width: 100%;
    max-width: 500px;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    background-color: #2e7d32;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #1b5e20;
}

footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

.gallery-links a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #81c784;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.gallery-links a:hover {
    background-color: #4caf50;
}

/* Sticky Nav */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Hero Section */
.hero-banner {
    background: linear-gradient(to right, #66bb6a, #43a047);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.hero-banner p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.hero-buttons .button {
  flex: 1 1 200px; /* minimum width of 200px but can grow */
  max-width: 300px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-align: center;
  white-space: normal;
  background: white;
  color: #2c5e3f;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
}

.hero-buttons .button:first-child {
  background: #a8e6a3;
}


.cta-button {
    background-color: #1b5e20;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    display: inline-block;
}

.cta-button:hover {
    background-color: #2e7d32;
}

/* Why Choose Us */
.why-choose-us {
    padding: 2rem;
    background-color: #f0f8f2;
}

.why-choose-us ul {
    list-style: disc inside;
    margin-top: 1rem;
}

.dark-mode {
  background-color: #1c1c1c;
  color: #e0e0e0;
}

.dark-mode .site-header,
.dark-mode footer {
  background-color: #2e7d32;
  color: white;
}

.dark-mode input,
.dark-mode textarea {
  background-color: #333;
  color: #fff;
  border: 1px solid #666;
}

.site-header {
    background: linear-gradient(90deg, #2e7d32, #66bb6a);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
}

.branding-left .logo,
.branding-right .dog-image {
    height: 60px;
    object-fit: contain;
}





.branding-left,
.branding-right {
    flex: 0 0 auto;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li {
  text-align: left;
}

/* Default logo size for mobile/tablet */
.branding-left .logo {
    height: 120px;
    object-fit: contain;
}

/* Larger logo only on desktop */
@media screen and (min-width: 992px) {
    .branding-left .logo {
        height: 250px;
    }
}




