/* css/style.css */

/* --- Base Styles --- */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #0d0d0d; /* Very dark background */
    color: #f0f0f0; /* Light text for dark background */
    line-height: 1.6;
    scroll-behavior: smooth; /* For smooth scrolling to sections */
}

.container {
    max-width: 1280px; /* Slightly wider container */
    margin: 0 auto;
    padding: 0 40px; /* Padding for content */
}

/* --- Section Backgrounds --- */
.section-dark {
    background-color: #1a1a1a; /* Dark section background */
    padding: 80px 0; /* Generous padding */
    border-bottom: 1px solid #333;
}

.section-light {
    background-color: #f8f8f8; /* Light section background */
    color: #333; /* Dark text for light background */
    padding: 80px 0;
    border-bottom: 1px solid #ddd;
}

.section-dark-alt {
    background-color: #222; /* Alternative dark shade for some sections */
    padding: 80px 0;
    border-bottom: 1px solid #333;
}


/* --- Headings --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; /* Very bold for headings */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0;
}

h1 {
    font-size: 5em; /* Massive main heading */
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Subtle shadow */
}

h2 {
    font-size: 3.5em; /* Large section headings */
    color: #40e0d0; /* Changed to turquoise */
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}
.section-light h2 {
    color: #333; /* Dark heading for light sections */
}


.section-subtitle {
    font-size: 1.3em;
    color: #ccc;
    text-align: center;
    margin-top: -30px; /* Pull closer to heading */
    margin-bottom: 60px;
}
.section-light .section-subtitle {
    color: #555;
}


/* --- Buttons --- */
.button {
    display: inline-block;
    padding: 18px 40px; /* Generous padding */
    text-decoration: none;
    border-radius: 5px; /* Slightly rounded */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1em;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap; /* Prevent text wrapping */
}

.button-primary {
    background-color: #40e0d0; /* Changed to turquoise */
    color: #1a1a1a; /* Dark text on turquoise */
}
.button-primary:hover {
    background-color: #36c0b3; /* Darker turquoise on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.button-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #40e0d0; /* Changed to turquoise border */
}
.button-secondary:hover {
    background-color: #40e0d0; /* Fill with turquoise on hover */
    color: #1a1a1a;
    transform: translateY(-2px);
}

.button-tertiary { /* Used for smaller "learn more" links */
    background-color: #333;
    color: #40e0d0; /* Changed to turquoise */
    border: 1px solid #40e0d0; /* Changed to turquoise border */
    padding: 12px 25px;
    font-size: 0.9em;
}
.button-tertiary:hover {
    background-color: #40e0d0; /* Fill with turquoise on hover */
    color: #1a1a1a;
    transform: translateY(-2px);
}

.button-center {
    text-align: center;
    margin-top: 50px;
}


/* --- Images --- */
.responsive-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    object-fit: cover; /* Ensures image covers area without distortion */
}

/* --- Header --- */
header {
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent dark header */
    padding: 20px 0;
    position: sticky; /* Sticky header */
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensure it's above other content */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8em; /* Adjusted for sticky header */
    font-weight: 900;
    color: #40e0d0; /* Changed to turquoise */
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}
.logo:hover {
    color: #fff;
}

.main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* --- REVISED FOR EVEN SPACING --- */
    gap: 15px; /* Space between each nav item */
}

.main-nav li {
    /* Removed margin-left: 35px; */
    /* Gap handles spacing now */
}

.main-nav a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: 700;
    font-size: 0.95em;
    transition: color 0.3s ease;
    /* --- REVISED FOR EVEN SPACING --- */
    padding: 5px 15px; /* Added horizontal padding to links */
    position: relative;
    border-radius: 3px; /* Slight roundness for link background */
}

.main-nav a:hover,
.main-nav a.active {
    color: #40e0d0; /* Changed to turquoise */
    background-color: rgba(64, 224, 208, 0.1); /* Subtle background on hover/active */
}
.main-nav a::after { /* Underline effect on hover/active */
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #40e0d0; /* Changed to turquoise */
    transition: width 0.3s ease;
    bottom: -5px; /* Position underline below padding */
    left: 50%; /* Start underline from center */
    transform: translateX(-50%); /* Center the underline */
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: calc(100% - 30px); /* Adjust width to fit inside padding */
    left: 50%;
    transform: translateX(-50%);
    background: #40e0d0; /* Changed to turquoise */
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    font-size: 2em;
    color: #40e0d0; /* Changed to turquoise */
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 700px; /* Fixed height for hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 2;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 900px; /* Constrain text width */
}

.hero-text .subtitle {
    font-size: 1.8em;
    color: #40e0d0; /* Changed to turquoise */
    font-weight: 600;
    margin-top: -10px;
    letter-spacing: 1px;
}

.hero-text .description {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}


/* --- About Us Intro Section --- */
.about-us-intro .container {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}
.about-text {
    flex: 2;
    font-size: 1.1em;
    color: #ccc;
}
.about-text p {
    margin-bottom: 20px;
}
.about-image-container {
    flex: 1;
    min-width: 300px; /* Ensure image doesn't get too small */
}

/* --- Our Breeding Program Section --- */
.our-program-section {
    text-align: center;
}
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
    margin-bottom: 40px;
}
.program-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
    text-align: center;
}
.program-item img.program-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    /* Adjusted filter for turquoise tint */
    filter: invert(49%) sepia(85%) saturate(300%) hue-rotate(130deg) brightness(90%) contrast(100%);
    box-shadow: none; /* Override responsive-image shadow */
}
.program-item h3 {
    font-size: 1.6em;
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 10px;
}
.program-item p {
    font-size: 0.95em;
    color: #666;
}


/* --- Available Puppies Section --- */
.available-puppies-section {
    text-align: center;
}
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 40px;
}
.puppy-card {
    background-color: #222;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.puppy-card img {
    width: 100%;
    height: 300px; /* Fixed height for puppy images */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid #333;
}
.puppy-card h3 {
    font-size: 1.6em;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 5px;
    padding: 0 20px;
}
.puppy-card p {
    color: #ddd;
    margin: 0 0 20px;
    padding: 0 20px;
    font-size: 1.1em;
}
.puppy-card .button {
    margin-top: auto; /* Pushes button to bottom */
    width: calc(100% - 40px); /* Adjust for padding */
    margin: 0 20px 20px;
    padding: 15px 0;
}


/* --- Testimonials Section (Placeholder) --- */
.testimonials-section {
    text-align: center;
}
.testimonials-slider {
    background-color: #333;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    max-width: 800px;
    margin: 0 auto;
    color: #eee;
}
.testimonial-item {
    margin-bottom: 20px;
}
.testimonial-item .quote {
    font-size: 1.4em;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.4;
}
.testimonial-item .author {
    font-size: 1.1em;
    font-weight: 600;
    color: #40e0d0; /* Changed to turquoise */
}
.testimonials-slider .note {
    font-size: 0.9em;
    color: #888;
    margin-top: 20px;
}


/* --- Contact CTA Section --- */
.contact-cta-section {
    text-align: center;
    background-color: #40e0d0; /* Changed to turquoise background */
    color: #1a1a1a; /* Dark text */
    padding: 80px 0;
}
.contact-cta-section h2 {
    color: #1a1a1a;
    font-size: 2.8em;
    margin-bottom: 20px;
}
.contact-cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #444;
}
.contact-cta-section .button-primary {
    background-color: #1a1a1a;
    color: #40e0d0; /* Changed to turquoise */
}
.contact-cta-section .button-primary:hover {
    background-color: #333;
    color: #fff;
}


/* --- Footer --- */
footer {
    background-color: #0d0d0d;
    color: #f0f0f0;
    padding: 60px 0;
    text-align: left; /* Changed from center */
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}
.footer-logo .logo {
    font-size: 1.5em; /* Smaller logo in footer */
    margin-bottom: 10px;
    display: block;
}
.footer-logo p {
    font-size: 0.9em;
    color: #aaa;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 180px;
}

footer h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    margin-bottom: 10px;
}
footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}
footer ul li a:hover {
    color: #40e0d0; /* Changed to turquoise */
}

.footer-contact p {
    font-size: 0.95em;
    margin-bottom: 10px;
    color: #ccc;
}
.footer-contact p i {
    margin-right: 10px;
    color: #40e0d0; /* Changed to turquoise */
}
.footer-contact a {
    color: #40e0d0; /* Changed to turquoise */
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}
.social-icons a {
    font-size: 1.8em;
    color: #40e0d0; /* Changed to turquoise */
    transition: transform 0.3s ease;
}
.social-icons a:hover {
    transform: translateY(-3px);
    color: #fff;
}

.privacy-terms-links {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}
.privacy-terms-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9em;
    margin: 0 15px;
}
.privacy-terms-links a:hover {
    color: #fff;
}


/* --- General Page Styles (for other pages like Our Bulldogs, Contact etc.) --- */
.page-header {
    background-color: #222;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #333;
}

.page-header h2 {
    font-size: 3.5em; /* Large heading */
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.page-header p {
    color: #ccc;
    font-size: 1.3em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Specific Page Styles (from previous iterations, adapted) --- */

/* Bulldogs Page */
.bulldog-profiles {
    padding-top: 0; /* Adjust for page-header spacing */
}

/* --- Photo Gallery Section --- */
.photo-gallery-section {
    text-align: center;
    padding: 60px 0;
}

.photo-gallery-section h2 {
    font-size: 2.2em;
    color: #40e0d0; /* Turquoise */
    margin-bottom: 40px;
}

.photo-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Spacing between rows */
    margin-bottom: 40px; /* Space between galleries */
}

.photo-row {
    display: flex;
    justify-content: center; /* Center images horizontally */
    gap: 20px; /* Spacing between images */
}

.gallery-image {
    width: 300px; /* Fixed width for images */
    height: 500px; /* Fixed height for images */
    object-fit: cover; /* Ensure images fill the space */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-row {
        flex-wrap: wrap; /* Allow images to wrap to the next line */
    }
    .gallery-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        width: 100px;
        height: 100px;
    }
}

.bulldog-profile {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px; /* More spacing */
    background-color: #222;
    padding: 40px; /* More padding */
    border-radius: 10px; /* Slightly more rounded */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.bulldog-profile:nth-child(even) {
    flex-direction: row-reverse;
}

.bulldog-profile .profile-image {
    flex: 0 0 45%;
}

.bulldog-profile .profile-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bulldog-profile .profile-content {
    flex: 1;
}

.bulldog-profile h3 {
    font-size: 2.5em; /* Larger profile names */
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 15px;
}

.bulldog-profile .breed-info {
    font-size: 1.2em;
    color: #aaa;
    margin-bottom: 25px;
}

.bulldog-profile p {
    font-size: 1.1em;
    color: #ddd;
}

/* Puppies Page */
.available-puppies-section {
    padding-top: 0;
}
.puppy-listing, .upcoming-litters, .adoption-info {
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 50px;
}

.puppy-listing h3, .upcoming-litters h3, .adoption-info h3 {
    font-size: 2.5em;
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 30px;
}

.puppy-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.puppy-card {
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.puppy-card img {
    height: 280px; /* Adjusted height */
}
.puppy-card h4 {
    font-size: 1.5em;
    color: #fff;
}
.puppy-card p {
    font-size: 1.05em;
    color: #ccc;
}
.puppy-card .button {
    font-size: 0.9em;
}

/* About Us Page */
.our-story .container {
    display: flex;
    gap: 60px;
    align-items: center;
}
.story-content {
    flex: 2;
    font-size: 1.1em;
    color: #ccc;
}
.story-content h3 {
    font-size: 2.2em;
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 20px;
}
.story-image {
    flex: 1;
    min-width: 300px;
}

.our-commitment .container {
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.our-commitment h3 {
    font-size: 2.2em;
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 30px;
    text-align: center;
}
.our-commitment ul {
    list-style: none;
    padding: 0;
}
.our-commitment ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #ddd;
}
.our-commitment ul li strong {
    color: #fff;
}
.our-commitment ul li::before {
    content: '★'; /* Star icon */
    color: #40e0d0; /* Changed to turquoise */
    position: absolute;
    left: 0;
    font-size: 1.5em;
    line-height: 1;
    top: 0;
}

.our-location .container {
    text-align: center;
    font-size: 1.1em;
    color: #ddd;
}
.our-location h3 {
    font-size: 2.2em;
    color: #40e0d0; /* Changed to turquoise */
    margin-bottom: 20px;
}

/* Contact Page */
.contact-form-section .contact-details,
.contact-form-section .contact-form {
    background-color: #222;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 40px; /* Add margin bottom for mobile stacking */
}

.contact-details h3, .contact-form h3 {
    font-size: 2.2em;
    color: #40e0d0; /* Changed to turquoise */
}

.contact-details p {
    font-size: 1.1em;
    color: #ddd;
}

.form-group label {
    font-weight: 700;
    color: #eee;
}
.form-group input, .form-group textarea {
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #40e0d0; /* Changed to turquoise */
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.3); /* Changed to turquoise */
}


/* Dog Boarding Page */
.boarding-overview .container {
    align-items: flex-start; /* Align top for text */
}

.boarding-overview .boarding-content h3 {
    font-size: 2.5em;
    color: #40e0d0; /* Changed to turquoise */
}

.boarding-overview .boarding-content ul li::before {
    color: #40e0d0; /* Changed to turquoise */
}

.boarding-details .detail-item {
    background-color: #333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.boarding-details .detail-item h4 {
    color: #40e0d0; /* Changed to turquoise */
}
.boarding-details .detail-item p {
    color: #ddd;
}

.boarding-requirements ul li::before {
    color: #40e0d0; /* Changed to turquoise */
}



.add-to-cart-btn {
    width: 100%; /* Make button full width of product card */
    padding: 12px 0; /* Adjust padding for full width */
    font-size: 1em;
    margin-top: auto; /* Ensures button is at the bottom */
}

/* --- THE ULTIMATE "NUKE" FIX FOR PRODUCTS --- */

.product-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 40px !important;
}

.product-card {
    background-color: #222 !important; /* Force the dark card background */
    border-radius: 10px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    border: none !important;
    height: 100% !important;
}

/* 1. FORCE THE IMAGE BOX TO BE CLEAN WHITE */
.product-image {
    background-color: #ffffff !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.product-image img {
    width: 100% !important;
    height: 250px !important;
    object-fit: contain !important;
    padding: 20px !important;
    display: block !important;
    background-color: #ffffff !important;
}

/* 2. KILL THE BLACK BOX OVER THE TEXT */
.product-info {
    padding: 25px !important;
    background: transparent !important; /* No extra backgrounds */
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    height: auto !important;
    min-height: 0 !important; /* Prevents hidden boxes from expanding */
}

/* 3. TARGET THE DESCRIPTION (THE P TAG) */
.product-info p {
    background-color: transparent !important; /* REMOVES THE BLACK COVER */
    color: #ffffff !important;               /* Force text to white */
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;                 /* Stops it from being a squashed box */
    opacity: 1 !important;
}

/* 4. FORCE THE TITLE */
.product-info h3 {
    color: #40e0d0 !important;
    margin: 0 0 10px 0 !important;
    background: transparent !important;
}

/* 5. FORCE THE BUTTON */
.product-info .button, 
.product-info .button-primary {
    background-color: #40e0d0 !important;
    color: #1a1a1a !important;
    display: inline-block !important;
    padding: 12px 20px !important;
    text-align: center !important;
    text-decoration: none !important;
    margin-top: auto !important; /* Push to bottom */
    border-radius: 5px !important;
}
.static-store-note {
    background-color: #333;
    color: #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    font-size: 1.1em;
    margin-top: 30px;
}

.static-store-note a {
    color: #40e0d0; /* Turquoise link */
    text-decoration: none;
    font-weight: 600;
}
.static-store-note a:hover {
    text-decoration: underline;
}


/* Footer */
footer h3 {
    color: #40e0d0; /* Changed to turquoise */
}

footer ul li a:hover {
    color: #40e0d0; /* Changed to turquoise */
}

.footer-contact p i {
    color: #40e0d0; /* Changed to turquoise */
}
.footer-contact a {
    color: #40e0d0; /* Changed to turquoise */
}

.social-icons a {
    color: #40e0d0; /* Changed to turquoise */
}


/* Responsive Design Adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 0 25px;
    }
    h1 {
        font-size: 4em;
    }
    h2 {
        font-size: 3em;
    }
    .hero-text .subtitle {
        font-size: 1.6em;
    }
    .hero-text .description {
        font-size: 1.1em;
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    .main-nav {
        display: none; /* Hide desktop nav */
    }
    .hamburger-menu {
        display: block; /* Show hamburger icon */
    }

    header {
        position: relative; /* Non-sticky for mobile (optional) */
        box-shadow: none;
    }

    /* Mobile Navigation (requires JS to toggle) */
    .main-nav.active { /* Class added by JS when menu is open */
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        z-index: 999;
    }
    .main-nav.active li {
        margin: 10px 0;
        text-align: center;
    }
    .main-nav.active a {
        font-size: 1.2em;
        display: block; /* Make links fill space */
        padding: 10px 0;
    }
    .main-nav a::after { /* Adjust underline for mobile nav */
        width: 0 !important; /* Override desktop underline */
    }
    .main-nav a.active {
        color: #40e0d0; /* Changed to turquoise */
    }


    h1 {
        font-size: 3em;
    }
    h2 {
        font-size: 2.5em;
    }
    .section-subtitle {
        font-size: 1.1em;
    }

    .hero-section {
        height: 550px; /* Shorter hero on tablets */
    }
    .hero-text .subtitle {
        font-size: 1.4em;
    }
    .hero-text .description {
        font-size: 1em;
    }
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-cta-buttons a {
        width: 80%; /* Make buttons wider */
        margin: 0 auto;
    }

    .about-grid,
    .bulldog-profile,
    .boarding-overview .container,
    .our-story .container,
    .contact-form-section .container,
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .about-text,
    .bulldog-profile .profile-content,
    .boarding-overview .boarding-content,
    .story-content,
    .contact-details,
    .contact-form {
        text-align: center;
        margin-bottom: 40px; /* Add space when stacking */
    }
    .about-image-container,
    .bulldog-profile .profile-image,
    .boarding-overview .boarding-image,
    .story-image {
        min-width: unset; /* Remove min-width to allow shrinking */
        max-width: 90%; /* Adjust image sizes on smaller screens */
        margin: 0 auto; /* Center images */
    }
    .bulldog-profile:nth-child(even) { /* Reset flex-direction for stacking */
        flex-direction: column;
    }
    .footer-links, .footer-contact, .footer-social {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    .footer-social .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    .section-subtitle {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .hero-section {
        height: 450px;
    }
    .hero-cta-buttons a {
        padding: 12px 25px;
        font-size: 0.9em;
    }
    .program-grid, .puppy-grid, .details-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
    }
    .puppy-card img {
        height: 250px;
    }
    .about-us-intro .container,
    .our-story .container {
        gap: 40px;
    }
    .bulldog-profile {
        gap: 30px;
        padding: 30px;
        margin-bottom: 60px;
    }
    .bulldog-profile h3 {
        font-size: 2em;
    }
    .contact-details, .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero-section {
        height: 400px;
    }
    .hero-cta-buttons a {
        padding: 12px 25px;
        font-size: 0.9em;
    }
}