/* styles.css */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --primary-white: #ffffff;
    --secondary-white: #f5f5f7;
    --accent-gray: #86868b;
    --light-gray: #d2d2d7;
    --medium-gray: #e5e5e7;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-black);
    background-color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Updated logo size */
.logo img {
    height: 120px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--secondary-black);
    padding: 5px 0;
    position: relative;
}

.nav-menu li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-black);
    transition: width 0.3s ease;
}

.nav-menu li a:hover:after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary-black);
}

.nav-cta {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-black);
}

.nav-cta:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border-color: var(--primary-black);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-black);
    cursor: pointer;
}

/* Hero Section - UPDATED margin-top */
.hero {
    height: calc(100vh - 115px); /* Account for nav height */
    position: relative;
    margin-top: 115px; /* 15px below navigation */
}

.hero-swiper, .hero-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--primary-white);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--light-gray);
    max-width: 500px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-white);
    color: var(--primary-black);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-white);
    border-color: var(--primary-white);
}

/* Swiper Navigation */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-white);
    background-color: rgba(0, 0, 0, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background-color: var(--primary-white);
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Purpose Section */
.purpose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.purpose-image {
    overflow: hidden;
}

.rounded-image {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.traits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.trait {
    text-align: center;
    padding: 20px 10px;
    border-radius: 12px;
    background-color: var(--secondary-white);
    transition: transform 0.3s ease;
}

.trait:hover {
    transform: translateY(-5px);
}

.trait-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.trait h3 {
    font-size: 1rem;
    font-weight: 600;
}

/* Advantage Section */
.advantage {
    background-color: var(--secondary-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.advantage-card {
    background-color: var(--primary-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Breeds Section - UPDATED SIMPLIFIED DESIGN */
.breeds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.breed-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 12px;
}

.breed-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-black);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.breed-image {
    margin-bottom: 25px;
    overflow: hidden;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breed-card:hover .breed-image img {
    transform: scale(1.03);
}

.breed-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.breed-card p {
    flex-grow: 1;
    margin-bottom: 0;
}

/* Offer Section */
.offer {
    background-color: var(--secondary-white);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-item {
    text-align: center;
    padding: 30px 20px;
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.offer-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Why Choose Section */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    padding: 15px 0;
}

.benefit i {
    color: var(--primary-black);
    font-size: 1.3rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a:hover {
    color: var(--primary-black);
    text-decoration: underline;
}

.contact-cta {
    margin-top: 40px;
    padding: 30px;
    background-color: var(--secondary-white);
    border-radius: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 1.1rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.copyright {
    color: var(--accent-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .advantages-grid,
    .breeds-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purpose-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .traits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .breeds-grid {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .breed-card {
        padding: 35px 25px;
    }
    
    .logo img {
        height: 80px;
    }
    
    .hero {
        margin-top: 95px;
        height: calc(100vh - 95px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 110px;
        left: 0;
        width: 100%;
        background-color: var(--primary-white);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        border-top: 1px solid var(--light-gray);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 70px;
    }
    
    .hero {
        margin-top: 85px;
        height: calc(100vh - 85px);
    }
    
    .breed-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .traits-grid {
        grid-template-columns: 1fr;
    }
    
    .logo img {
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .hero {
        margin-top: 75px;
        height: calc(100vh - 75px);
    }
    
    .nav-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .breed-card {
        padding: 30px 20px;
    }
    
    .breed-card h3 {
        font-size: 1.6rem;
    }
}