/* Base Styles */
:root {
    --primary-color: #116699;
    --secondary-color: #e9f7ff;
    --accent-color: #25abe4;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #0a4d73;
    --light-bg: #f5f9ff;
    --border-color: #d9e6f7;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

.btn {
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-link {
    padding: 0;
    color: var(--primary-color);
    text-transform: none;
    letter-spacing: normal;
    font-weight: 600;
}

.btn-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.btn-link:hover i {
    transform: translateX(5px);
}

.bg-light {
    background-color: var(--light-bg);
}

img {
    max-width: 100%;
    height: auto;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 10px 0;
    font-size: 0.9rem;
}

.announcement {
    font-weight: 500;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.contact-info a {
    color: var(--light-text);
    margin-right: 15px;
}

.social-icons {
    display: flex;
}

.social-icons a {
    color: var(--light-text);
    margin-left: 15px;
    font-size: 0.9rem;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Header */
.site-header {
    padding: 20px 0;
    background-color: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.company-logo {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
    margin-left: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-text);
    box-shadow: var(--box-shadow);
    min-width: 200px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
    list-style: none;
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    padding: 8px 20px;
    font-weight: 400;
}

.dropdown a:hover {
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
}

/* Hero Section */
.hero-section {
    background-image: url('https://images.unsplash.com/photo-1532187863486-abf9dbad1b69?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--light-text);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    position: relative;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.about-image img {
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Breeds Section */
.breed-card {
    background-color: var(--light-text);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
}

.breed-card:hover {
    transform: translateY(-10px);
}

.breed-image {
    height: 250px;
    overflow: hidden;
}

.breed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.breed-content {
    padding: 25px;
}

.breed-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Features Section */
.feature-box {
    padding: 30px;
    background-color: var(--light-text);
    border-radius: 5px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    height: 100%;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: var(--light-text);
    color: var(--primary-color);
    border-color: var(--light-text);
}

.cta-section .btn-primary:hover {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}

/* Contact Section */
.contact-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
    min-width: 25px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0;
    line-height: 1.5;
}

.contact-form {
    background-color: var(--light-text);
    padding: 30px;
    border-radius: 5px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-control {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(17, 102, 153, 0.15);
}

.form-control::placeholder {
    color: #999;
    font-size: 0.9rem;
}

/* Add asterisk to required fields */
input:required::placeholder,
textarea:required::placeholder {
    color: #999;
}

textarea.form-control {
    height: auto;
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: #aaa;
    padding: 70px 0 0;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Makes the logo white in the footer */
}

.footer-logo h2 {
    color: var(--light-text);
    margin-bottom: 0;
}

.site-footer p {
    margin-bottom: 20px;
}

.site-footer .social-icons {
    margin-top: 20px;
}

.site-footer .social-icons a {
    color: var(--light-text);
    margin-right: 15px;
    margin-left: 0;
    font-size: 1.2rem;
}

.site-footer h3 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: var(--light-text);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--accent-color);
    min-width: 20px;
    text-align: center;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links a {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--light-text);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .breed-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }
    
    .site-header {
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background-color: var(--light-text);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 30px;
        transition: var(--transition);
        z-index: 1001;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-list li {
        margin: 0 0 15px;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0 0 0 15px;
        margin-top: 10px;
        display: none;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .hero-section {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin: 0 20px 0 0;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info a {
        margin-bottom: 10px;
        display: block;
    }
    
    .social-icons {
        margin-top: 5px;
    }
    
    .social-icons a {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .footer-contact p {
        word-break: break-word;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-regular-webfont.woff2') format('woff2'),
         url('fonts/geomanist-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-medium-webfont.woff2') format('woff2'),
         url('fonts/geomanist-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Geomanist';
    src: url('fonts/geomanist-bold-webfont.woff2') format('woff2'),
         url('fonts/geomanist-bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
} 