/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    transition: color 0.3s ease;
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #63927B;
}

.nav-link.active {
    color: #63927B;
    font-weight: 600;
}

.nav-link.urgent {
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
}

.nav-link.urgent:hover {
    background: #c0392b;
    color: white;
}

/* Header with solid background */
.header.scrolled .nav-logo h1,
.header.scrolled .nav-link {
    color: #333 !important;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: #63927B !important;
}

.header.scrolled .nav-link.urgent {
    color: white !important;
}

.header.scrolled .bar {
    background: #333;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.4);
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 3;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #63927B;
    color: white;
}

.btn-primary:hover {
    background: #4a7c59;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #63927B;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8f9fa;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #63927B;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #63927B 0%, #4a7c59 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #63927B;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #63927B;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #63927B 0%, #4a7c59 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Team Section */
.team {
    padding: 80px 0;
    background: #f8f9fa;
}

.team h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #63927B;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #63927B 0%, #4a7c59 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #63927B;
}

.member-title {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #63927B;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #63927B;
    margin-top: 0.2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #63927B;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-item p a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: #63927B;
}

.opening-hours p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.4;
}

.contact-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
}

#map {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 1rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #63927B;
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-style: italic;
}

/* Emergency Section */
.emergency {
    padding: 80px 0;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.emergency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.emergency-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    display: inline-block;
    text-align: left;
}

.emergency-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.emergency-phone p {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.emergency-phone .phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-phone .phone-number a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.emergency-phone .phone-number a:hover {
    opacity: 0.8;
}

.emergency-contact p {
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.emergency-contact ul {
    list-style: none;
    text-align: left;
}

.emergency-contact li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.emergency-contact li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
}

/* Footer */
.footer {
    background: #F8F9FA;
    color: #333;
    padding: 40px 0 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.footer-contact-item i {
    color: #63927B;
    font-size: 1.1rem;
}

.footer-contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #63927B;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 1.5rem;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Change link colors for contrast ONLY when mobile menu is open */
    .nav-menu.active .nav-link {
        color: #333;
    }
    .nav-menu.active .nav-link:hover,
    .nav-menu.active .nav-link.active {
        color: #63927B;
    }
    .nav-menu.active .nav-link.urgent {
        color: white; /* The urgent link has a background, so its text stays white */
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        min-height: 70vh;
        padding: 120px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .contact-content,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 100px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services h2,
    .about-text h2,
    .team h2,
    .contact h2,
    .emergency-info h2 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.team-member,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover,
.team-member:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid #63927B;
    outline-offset: 2px;
} 

/* Gosbi Section */
.gosbi {
    padding: 80px 0;
    background: white;
}
.gosbi-content {
    display: block;
    gap: 0;
    align-items: unset;
    justify-content: unset;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.gosbi-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #63927B;
}
.gosbi-text p {
    margin-bottom: 1.2rem;
    color: #666;
    line-height: 1.7;
}
.gosbi-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.5rem 0;
}
.gosbi-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a7c59;
}
.gosbi-features i {
    color: #27ae60;
    margin-right: 1rem;
    font-size: 1.3rem;
}
.gosbi-recipes h3 {
    color: #63927B;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}
.gosbi-recipes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.gosbi-recipe-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}
.gosbi-recipe-card:hover {
    transform: translateY(-5px);
}
.gosbi-animal-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50%;
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.gosbi-recipe-card h4 {
    color: #63927B;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.gosbi-recipe-card p {
    color: #666;
    font-size: 1rem;
}
.gosbi-image {
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 2rem;
}
.gosbi-img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    background: none;
    box-shadow: none;
}
.gosbi-text {
    text-align: center;
}
@media (max-width: 900px) {
    .gosbi-content {
        flex-direction: unset;
        gap: 0;
        align-items: unset;
    }
    .gosbi-image {
        margin-top: 0;
    }
}
@media (max-width: 600px) {
    .gosbi-recipes-grid {
        grid-template-columns: 1fr;
    }
    .gosbi-img {
        max-width: 100%;
    }
} 

.gosbi-animal-large {
    width: 100%;
    max-width: 300px;
    display: block;
    margin: 0 auto 2rem auto;
    border-radius: 15px;
    background: none;
    box-shadow: none;
    object-fit: contain;
}
.gosbi-recipes-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
@media (max-width: 900px) {
    .gosbi-recipes-grid {
        flex-direction: column;
        gap: 2rem;
    }
} 