/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh;
    background: url('images/3903-34-1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section.parallax {
    background-attachment: fixed;
    background-size: cover;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 8px;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* History Section */
.history-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

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

.history-card {
    display: flex;
    align-items: center;
    margin: 40px 0;
    gap: 20px;
}

.history-card.reverse {
    flex-direction: row-reverse;
}

.history-card img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.history-content {
    width: 50%;
    padding: 20px;
    font-family: 'Lora', serif;
}

.history-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .history-card, .history-card.reverse {
        flex-direction: column;
    }
    .history-card img, .history-content {
        width: 100%;
    }
}

/* Location Section */
.location-section {
    padding: 60px 20px;
}

.location-container {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-sidebar {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-height: 600px;
    overflow-y: auto;
}

.location-sidebar ul {
    list-style: none;
    padding: 0;
}

.location-sidebar li {
    margin: 10px 0;
}

.location-sidebar li::before {
    content: '📍 ';
    margin-right: 5px;
}

.location-sidebar p:nth-of-type(2) + ul li::before {
    content: '✅ ';
}

.location-map {
    width: 100%;
}

.location-map iframe {
    width: 100%;
    height: 600px;
    border-radius: 8px;
}

@media (max-width: 992px) {
    .location-container {
        grid-template-columns: 1fr;
    }
    .location-sidebar {
        max-height: none;
        overflow-y: visible;
    }
}

@media (max-width: 768px) {
    .location-container {
        flex-direction: column;
    }
    .location-sidebar, .location-map {
        width: 100%;
    }
    .location-map iframe {
        height: 400px;
    }
}

/* Pet Section */
.pet-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.pet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

.pet-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.pet-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pet-item:hover img {
    transform: scale(1.1);
}

.pet-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.pet-item[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.pet-item[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* Transportation Section */
.transportation-section {
    padding: 60px 20px;
    background: var(--light-color);
    text-align: center;
}

.transport-accordion {
    max-width: 800px;
    margin: 20px auto;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-toggle {
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-toggle:hover, .accordion-toggle.active {
    background: var(--primary-color);
    color: #fff;
}

.accordion-content {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-top: none;
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.7;
    transition: max-height 0.3s ease;
}

.accordion-content.active {
    display: block;
    max-height: 500px;
}

.map-container {
    margin: 20px auto;
    max-width: 800px;
    height: 350px;
    margin-bottom: 40px;
}

.map-container iframe {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    display: block;
}