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

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: #2c2c2c;
    line-height: 1.8;
    overflow-x: hidden;
    background: #fafaf8;
}

.vivaldi {
    font-family: 'Vivaldi', 'Brush Script MT', cursive;
}

.vivaldi-subtitle {
    font-family: 'Vivaldi', 'Brush Script MT', cursive;
    font-size: clamp(2.1rem, 5.6vw, 3.5rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 1.3s ease-out 0.2s both;
}

.hero {
    height: 50vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/banner.jpg') center/cover;
    opacity: 0.4;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 2rem;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    opacity: 0.9;
    animation: fadeInUp 1.4s ease-out 0.3s both;
}

section {
    padding: 3rem 2rem 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-section {
    background: #fafaf8;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #2c2c2c;
    margin: 1.5rem auto 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.info-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 2px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(0,0,0,0.12);
}

.info-card h3 {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
}

.info-card p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    color: #555;
    transition: color 0.3s ease;
}

.feature-list li:hover {
    color: #2c2c2c;
}

.feature-list li::before {
    content: '✦';
    margin-right: 1rem;
    color: #2c2c2c;
}

.gallery-section {
    background: #fff;
    padding: 3rem 0 6rem 0;
}

.pet-policy-section {
    background: #fafaf8;
    padding: 3rem 2rem 3rem 2rem;
}

.pet-policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.pet-policy-content p {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.location-section {
    background: #fff;
    padding: 3rem 2rem 6rem 2rem;
}

.pricing-section {
    background: #fafaf8;
    padding: 3rem 2rem 6rem 2rem;
}

.pricing-table-container {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto 2rem;
    background: #fafaf8;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    border-radius: 4px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
}

.pricing-table th {
    padding: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.pricing-table th:first-child {
    text-align: left;
}

.pricing-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
    color: #555;
}

.pricing-table td:first-child {
    color: #2c2c2c;
    font-weight: 400;
}

.pricing-table td:not(:first-child) {
    text-align: center;
    font-weight: 500;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr {
    transition: background 0.3s ease;
}

.pricing-table tbody tr:hover {
    background: #fff;
}

.pricing-note {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 1rem 0;
    text-align: center;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 60px rgba(0,0,0,0.15);
    height: 500px;
}

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

.transport-info {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
}

.transport-info h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.transport-section {
    margin-bottom: 2rem;
}

.transport-section h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.transport-section ul {
    list-style: none;
    padding-left: 2.5rem;
}

.transport-section li {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.transport-section li::before {
    content: '·';
    margin-right: 0.8rem;
    font-weight: bold;
}

.transport-info p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-top: 1.5rem;
}

.transport-info a {
    color: #2c2c2c;
    text-decoration: underline;
}

.transport-info a:hover {
    opacity: 0.7;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 60px rgba(0,0,0,0.15);
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    color: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.carousel-btn.prev { left: 1rem; }
.carousel-btn.next { right: 1rem; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #2c2c2c;
    transform: scale(1.3);
}

.contact-section {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 3rem 2rem 6rem 2rem;
}

.contact-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-section h2 {
    color: #fff;
}

.contact-section h2::after {
    background: #fff;
}

.contact-info {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 3rem auto 0;
}

.contact-item {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}

.contact-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    opacity: 0.7;
}

footer {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

footer .vivaldi {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    display: block;
}

footer .vivaldi-small {
    font-family: 'Vivaldi', 'Brush Script MT', cursive;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.9;
}

footer p {
    margin: 0.3rem 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .carousel-slide img {
        height: 400px;
    }

    .map-container {
        height: 350px;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.8rem;
    }

    .pricing-table th {
        font-size: 0.95rem;
    }

    section {
        padding: 2rem 1.5rem 4rem 1.5rem;
    }
}