@import url('bubbles.css');

:root {
    --primary-color: #A0E6E1;
    /* Mint Green / Light Blue */
    --primary-dark: #7BCBC6;
    --accent-color: #4FBDB6;
    --text-color: #4A4A4A;
    --light-text: #777;
    --background-color: #F8FDFF;
    --white: #FFFFFF;
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
}

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

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.subtitle {
    display: block;
    color: var(--accent-color);
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

h2 {
    font-size: 2.5rem;
    color: var(--text-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 10px rgba(79, 189, 182, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Header */
.site-header {
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-content h2 {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    box-shadow: 20px 20px 60px rgba(160, 230, 225, 0.4);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Concept Section */
.concept-section {
    background-color: var(--white);
}

.concept-text {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.concept-features {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.feature-card {
    background: var(--background-color);
    padding: 30px;
    border-radius: var(--border-radius);
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

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

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Qualifications Section */
.qual-section {
    background: linear-gradient(to bottom, #F8FDFF, #EAF9F9);
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -30px;
}

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

.qual-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    border-top: 4px solid var(--primary-color);
}

.qual-card:hover {
    box-shadow: 0 10px 25px rgba(160, 230, 225, 0.3);
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    opacity: 0.2;
}

.qual-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Menu Section */
.menu-section {
    background-color: var(--white);
}

.menu-list {
    max-width: 800px;
    margin: 0 auto;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.menu-name h3 {
    font-size: 1.2rem;
    color: #444;
}

.menu-name p {
    font-size: 0.9rem;
    color: #888;
}

.menu-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-color);
}

.menu-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 30px;
}

/* Contact Section */
.contact-section {
    padding-bottom: 0;
}

.contact-box {
    background: var(--primary-color);
    border-radius: 20px 20px 0 0;
    padding: 60px;
    text-align: center;
    color: #333;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    flex: 1;
    text-align: left;
    padding-right: 20px;
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-info .tel {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    color: var(--accent-color);
    /* Make it darker or use accent color if background is light */
    color: #00897b;
    /* Dark Teal for better contrast */
}

.contact-info .tel a {
    color: inherit;
    text-decoration: none;
    transition: box-shadow 0.3s;
}

.contact-info .tel a:hover {
    text-decoration: underline;
}

.contact-info .address,
.contact-info .hours,
.contact-info .contact-note {
    color: var(--text-color);
    font-size: 1.1rem;
}

.map-placeholder {
    flex: 1;
    height: 250px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    min-width: 300px;
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }

    .main-nav {
        display: none;
        /* Simplification for now */
    }

    .mobile-menu-btn {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--accent-color);
        position: absolute;
        transition: 0.3s;
    }

    .mobile-menu-btn span:nth-child(1) {
        top: 0;
    }

    .mobile-menu-btn span:nth-child(2) {
        top: 50%;
        transform: translateY(-50%);
    }

    .mobile-menu-btn span:nth-child(3) {
        bottom: 0;
    }

    .hero-section {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-image-container {
        margin-bottom: 40px;
    }

    .concept-features {
        flex-direction: column;
        align-items: center;
    }

    .contact-box {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .contact-info {
        text-align: center;
        padding-right: 0;
    }

    .map-placeholder {
        width: 100%;
    }
}

/* Price List Styling */
.menu-category {
    margin-bottom: 40px;
}

.menu-category h3 {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
}

.menu-category h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.price-table-wrapper {
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(160, 230, 225, 0.2);
    border-radius: 16px;
    background: white;
    border: 1px solid #eefcfc;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    white-space: nowrap;
}

.price-table th {
    background: #e0f2f1;
    /* Very light teal instead of gradient for better contrast with dark text */
    color: var(--text-color);
    /* Dark text for readability */
    padding: 18px 25px;
    text-align: left;
    font-weight: bold;
    font-size: 1.05rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--primary-color);
}

.price-table td {
    padding: 16px 25px;
    border-bottom: 1px solid #f0f9f9;
    color: var(--text-color);
    font-size: 1rem;
    transition: background-color 0.2s;
}

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

.price-table tr:hover td {
    background-color: #f8fdff;
}

/* Breed column styling */
.price-table td:first-child {
    font-weight: 500;
    color: #555;
    background-color: #fff;
    /* Keep breed name white background or subtle? Let's keep it transparent to pick up row hover */
}

/* Price columns alignment */
.price-table th:not(:first-child),
.price-table td:not(:first-child) {
    text-align: right;
    font-family: 'Zen Maru Gothic', sans-serif;
    /* Ensure numbers match font */
    color: var(--accent-color);
    font-weight: bold;
}

/* Mobile adjustments */
@media (max-width: 600px) {

    .price-table th,
    .price-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Profile Section */
.profile-section {
    background-color: #f0fdfc;
    /* Very light mint background */
}

.profile-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.profile-image-container {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(79, 189, 182, 0.2);
}

.profile-text {
    flex: 1;
}

.profile-name {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 5px;
}

.profile-name-en {
    display: block;
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: normal;
    margin-top: 5px;
    letter-spacing: 1px;
}

.profile-license {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: inline-block;
    color: #666;
    font-size: 0.9rem;
    border: 1px solid #e0f2f1;
}

.profile-description {
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

/* Responsive for Profile */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .profile-name {
        display: inline-block;
        /* Center aligned */
    }
}

/* Sub Menu Styling */
.sub-menu-group {
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sub-menu-title {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 15px;
    border-left: 5px solid var(--accent-color);
    padding-left: 15px;
}

.menu-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    margin-left: 5px;
}