/* ====================================
   WagTime Pet Sitting - Stylesheet
   ==================================== */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #4a3728;
    background-color: #fefefe;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: #5d4037;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ====================================
   Navigation Bar
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #5d4037 0%, #795548 100%);
    padding: 0.8rem 2rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand:hover {
    color: #ffcc80;
}

.paw-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    color: #fff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffcc80;
  
}

/* ====================================
   Section Base Styles
   ==================================== */
.section {
    min-height: 100vh;
    padding: 120px 2rem 60px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff8a65, #ffb74d);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #8d6e63;
    margin-top: 1rem;
}

/* ====================================
   Hero Section
   ==================================== */
.hero-section {
    background: linear-gradient(135deg, #fff8e1 0%, #ffe0b2 50%, #ffccbc 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,183,77,0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    color: #5d4037;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-tagline {
    font-size: 1.8rem;
    color: #ff7043;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-description {
    font-size: 1.1rem;
    color: #6d4c41;
    margin-bottom: 2rem;
}

.hero-description p {
    margin-bottom: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7043, #ff5722);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 112, 67, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e64a19, #d84315);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #5d4037;
    color: #5d4037;
}

.btn-secondary:hover {
    background: #5d4037;
    color: #fff;
  
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff7043;
}

.stat-label {
    color: #8d6e63;
    font-size: 1rem;
}

.hero-image {
    margin-top: 2rem;
}

.hero-image-placeholder {
    display: flex;
    gap: 1rem;
    font-size: 4rem;
}

.hero-emoji {
    transition: transform 0.3s ease;
}


/* ====================================
   Breed Cards Grid (Dogs & Cats)
   ==================================== */
#dogs {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
}

#cats {
    background: linear-gradient(180deg, #fff3e0 0%, #ffe0b2 100%);
}

.breed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cat-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.breed-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    min-height: 400px;
}

.breed-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.breed-card.featured {
    border: 3px solid #ff7043;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #ff7043, #ff5722);
    color: #fff;
    padding: 0.3rem 2.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 10;
}

.breed-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.labrador {
    background: linear-gradient(135deg, #ffe082, #ffb74d);
}

.german-shepherd {
    background: linear-gradient(135deg, #bcaaa4, #8d6e63);
}

.golden-retriever {
    background: linear-gradient(135deg, #ffcc80, #ffa726);
}

.husky {
    background: linear-gradient(135deg, #b0bec5, #78909c);
}

.pug {
    background: linear-gradient(135deg, #d7ccc8, #a1887f);
}

.local-dog {
    background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
}

.persian {
    background: linear-gradient(135deg, #e1bee7, #ce93d8);
}

.siamese {
    background: linear-gradient(135deg, #ffe0b2, #ffcc80);
}

.bengal {
    background: linear-gradient(135deg, #ffcc80, #ff8a65);
}

.maine-coon {
    background: linear-gradient(135deg, #d7ccc8, #bcaaa4);
}

.local-cat {
    background: linear-gradient(135deg, #c8e6c9, #81c784);
}

.breed-img {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.breed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}



.breed-info {
    padding: 1.5rem;
}

.breed-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #5d4037;
}

.breed-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.detail-label {
    font-weight: 600;
    color: #8d6e63;
    min-width: 100px;
}

.detail-value {
    color: #5d4037;
}

.care-level {
    display: flex;
    gap: 4px;
}

.care-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: background 0.3s ease;
}

.care-dot.filled {
    background: linear-gradient(135deg, #ff7043, #ff5722);
}

.breed-description {
    font-size: 0.9rem;
    color: #6d4c41;
    line-height: 1.5;
}

/* Cat card specific styles */
.cat-card .breed-image {
    height: 150px;
}

/* ====================================
   Stray Dog Awareness Section
   ==================================== */
.stray-section {
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
}

.awareness-banner {
    background: linear-gradient(135deg, #ff7043, #f4511e);
    padding: 2rem 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(255, 112, 67, 0.3);
}

.banner-content h3 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.stray-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
}

.stray-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #5d4037;
}

.stray-intro p {
    color: #6d4c41;
    font-size: 1.1rem;
}

.stray-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stray-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


.stray-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stray-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #5d4037;
}

.stray-list {
    padding-left: 0;
}

.stray-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #6d4c41;
}

.stray-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff7043;
    font-weight: bold;
}

.subsection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.subsection-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}


.subsection-card.full-width {
    grid-column: span 2;
}

.subsection-header {
    background: linear-gradient(135deg, #81c784, #66bb6a);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.subsection-icon {
    font-size: 2rem;
}

.subsection-header h4 {
    color: #fff;
    font-size: 1.3rem;
    margin: 0;
}

.subsection-content {
    padding: 1.5rem;
}

.subsection-content p {
    color: #6d4c41;
    margin-bottom: 1rem;
}

.subsection-content ul {
    padding-left: 0;
}

.subsection-content li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #5d4037;
}

.do-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

.dont-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #f44336;
    font-weight: bold;
}

.vax-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vax-item h5 {
    color: #5d4037;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.vax-item ul li::before {
    content: '💉';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.vax-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #388e3c;
}

/* ====================================
   Pet Care Section
   ==================================== */
#care {
    background: linear-gradient(180deg, #fce4ec 0%, #f8bbd9 100%);
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.care-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}



.care-card.full-width-card {
    grid-column: span 2;
}

.care-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.care-card h3 {
    font-size: 1.5rem;
    color: #5d4037;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ffb74d;
}

.care-content h4 {
    color: #ff7043;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.care-content ul {
    padding-left: 0;
}

.care-content li {
    padding: 0.4rem 0;
    padding-left: 1.8rem;
    position: relative;
    color: #5d4037;
}

.care-content li::before {
    content: '🐾';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.care-note {
    margin-top: 1rem;
    padding: 1rem;
    background: #fff3e0;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #e65100;
    border-left: 4px solid #ff7043;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.training-item {
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 15px;
}

.training-item h4 {
    color: #5d4037;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.training-item li {
    padding: 0.5rem 0;
    color: #5d4037;
}

.training-item li strong {
    color: #ff7043;
}

/* ====================================
   Veterinary Services Section
   ==================================== */
.vet-section {
    background: linear-gradient(180deg, #e3f2fd 0%, #bbdefb 100%);
}

.vet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.vet-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.vet-header {
    background: linear-gradient(135deg, #5d4037, #795548);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.vet-logo {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vet-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.vet-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.vet-body {
    padding: 1.5rem;
}

.vet-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content strong {
    color: #5d4037;
    display: block;
    margin-bottom: 0.3rem;
}

.info-content p {
    color: #6d4c41;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.info-content ul {
    padding-left: 0;
    margin-top: 0.5rem;
}

.info-content li {
    font-size: 0.9rem;
    color: #6d4c41;
    padding: 0.2rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.info-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
}

.vet-footer {
    background: #f5f5f5;
    padding: 1rem 1.5rem;
}

.vet-mission {
    font-style: italic;
    color: #8d6e63;
    font-size: 0.9rem;
    text-align: center;
}

.emergency-box {
    background: linear-gradient(135deg, #ff5722, #f4511e);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 40px rgba(255, 87, 34, 0.3);
}

.emergency-box h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-box > p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.emergency-contacts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.emergency-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}



/* ====================================
   Footer
   ==================================== */
.footer {
    background: linear-gradient(135deg, #3e2723, #5d4037);
    color: #fff;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: #ffcc80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #ffcc80;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffcc80;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
