/* ========== ENZO BRAND COLORS ========== */
:root {
    --primary-green: #B4CE0B;  /* Primary brand color - vibrant lime */
    --primary-black: #000000;   /* Primary text color */
    --pure-white: #FFFFFF;   /* Backgrounds */
    --light-bg: #F5F9E0;   /* Light accent background */
    --dark-bg: #1A1A1A;    /* Dark backgrounds */
    --medium-gray: #333333;    /* Secondary text */
    --light-gray: #F5F5F5; /* Light backgrounds */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--light-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-black);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== SIMPLE NAVIGATION ========== */

.simple-nav {
    background: var(--primary-black);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-green);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
} 
/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    width: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('assets/enzo_pets.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--pure-white);
    text-align: center;
    margin-bottom: 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    padding: 40px 20px;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(180, 206, 11, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.hero-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* ========== QUOTE SECTION ========== */
.quote-section {
    background-color: var(--light-bg);
    padding: 50px 0;
    margin-bottom: 60px;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    color: var(--primary-black);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
}

/* ========== CONTENT SECTIONS ========== */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary-green);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ========== MISSION & VISION ========== */
.mission-vision {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.mission, .vision {
    flex: 1;
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 4px solid var(--primary-green);
}

.mission i, .vision i {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* ========== WHAT MAKES US DIFFERENT ========== */
.difference-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.difference-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.difference-item {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-top: 3px solid var(--primary-green);
}

.difference-item i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* ========== VALUES SECTION ========== */
.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-card {
    background-color: var(--pure-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid #f0f0f0;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-green);
}

.value-card i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* ========== SUCCESS STORIES ========== */
.success-stories {
    background-color: var(--light-gray);
    padding: 60px 0;
    margin-bottom: 60px;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: var(--pure-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(180, 206, 11, 0.1);
}

.story-image {
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
}

.story-content {
    padding: 25px;
}

.story-content h4 {
    margin-bottom: 10px;
    color: var(--primary-black);
}

.story-content p {
    color: var(--medium-gray);
    font-style: italic;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--primary-green);
    font-size: 14px;
}

/* ========== PET GALLERY SLIDESHOW ========== */
.gallery-container {
    position: relative;
    margin: 0 auto 40px;
    max-width: 1200px;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 15px;
    padding: 10px;
}

.pet-slide {
    flex: 0 0 calc(33.333% - 10px);
    background: var(--pure-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    display: block;
    aspect-ratio: 1/1;
}

.pet-slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(180, 206, 11, 0.25);
}

.curved-edge {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(180, 206, 11, 0.85), rgba(143, 163, 8, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: var(--primary-black);
    z-index: 2;
}

.pet-slide:hover .pet-overlay {
    opacity: 1;
}

.pet-overlay i {
    font-size: 32px;
    margin-bottom: 8px;
    animation: instagramPulse 2s infinite;
}

@keyframes instagramPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pet-overlay span {
    font-weight: 600;
    font-size: 14px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--primary-black);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: #8fa308;
    color: var(--pure-white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

.instagram-cta {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, var(--light-bg), var(--pure-white));
    border-radius: 12px;
    border: 2px solid var(--primary-green);
}

.instagram-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.instagram-link:hover {
    color: #8fa308;
    transform: translateY(-2px);
}

/* ========== CTA SECTION ========== */
.cta-section {
    background-color: var(--primary-black);
    color: var(--pure-white);
    text-align: center;
    padding: 70px 0;
    border-radius: 10px;
    margin-bottom: 60px;
    border: 2px solid var(--primary-green);
}

.cta-section h2 {
    color: var(--pure-white);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: var(--primary-green);
    color: var(--primary-black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    background-color: #8fa308;
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 206, 11, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    background-color: var(--pure-white);
    padding: 60px 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border-top: 4px solid var(--primary-green);
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 20px;
    color: var(--primary-green);
    margin-right: 15px;
    margin-top: 5px;
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--primary-green);
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-black);
    font-family: 'Poppins', sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 2px rgba(180, 206, 11, 0.2);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

#form-status {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

#form-status.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* ========== FOOTER ========== */
footer {
    background-color: var(--primary-black);
    color: #f5f5f5;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--primary-green);
    margin-bottom: 25px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-green);
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--medium-gray);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 18px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-green);
    color: var(--primary-black);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--medium-gray);
    color: #999999;
    font-size: 14px;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background-color: #8fa308;
    color: var(--pure-white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(180, 206, 11, 0.4);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(180, 206, 11, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-green);
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 992px) {
    .mission-vision, .contact-container {
        flex-direction: column;
    }
    
    .pet-slide {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-logo {
        font-size: 48px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .pet-slide {
        flex: 0 0 calc(100% - 20px);
        max-width: 300px;
        margin: 0 auto;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .gallery-prev {
        left: 5px;
    }
    
    .gallery-next {
        right: 5px;
    }
    
    .pet-overlay i {
        font-size: 24px;
    }
    
    .pet-overlay span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 15px;
        margin: 0 10px;
    }
    
    .pet-slide {
        aspect-ratio: 4/3;
        max-width: 280px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .pet-overlay i {
        font-size: 20px;
    }
    
    .pet-overlay span {
        font-size: 11px;
    }
}