/* ========== BUDDHIST & TEA CULTURE SECTION ========== */
.buddhist-tea-section {
    position: relative;
    overflow: hidden;
}

.culture-part {
    padding: 80px 0;
    position: relative;
}

.buddhist-part {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.buddhist-part::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23c9151e" opacity="0.03"><path d="M50 10L60 35L85 40L65 55L75 85L50 75L25 85L35 55L15 40L40 35Z"/></svg>');
    background-size: 120px 120px;
    animation: floatBackground 25s linear infinite;
}

.tea-part {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
}

.tea-part::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%2300a651" opacity="0.03"><path d="M20 20C20 10 90 10 90 20 90 30 20 30 20 20ZM30 40C30 35 80 35 80 40 80 45 30 45 30 40Z"/></svg>');
    background-size: 100px 100px;
    animation: floatBackground 20s linear infinite reverse;
}

@keyframes floatBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Animation Containers */
.buddhist-animation-container,
.tea-animation-container {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

/* Buddhist & Tea Elements */
.buddhist-element,
.tea-element {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: white;
    border-radius: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    cursor: pointer;
    z-index: 10;
    max-width: 200px;
}

.buddhist-element {
    border-left: 4px solid var(--primary-color);
}

.tea-element {
    border-left: 4px solid var(--success-color);
}

.buddhist-element:hover,
.tea-element:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.element-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.buddhist-element .element-icon {
    background: var(--gradient-red);
}

.tea-element .element-icon {
    background: var(--gradient-blue);
}

.element-content h5 {
    font-weight: 900;
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.element-content p {
    margin: 0;
    font-size: 0.7rem;
    color: #666;
}

/* Element Positions */
#sacredTooth {
    top: 10%;
    left: 5%;
    animation: floatElement 8s ease-in-out infinite;
}

#ancientCities {
    top: 20%;
    right: 5%;
    animation: floatElement 7s ease-in-out infinite 1s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(5px) rotate(-2deg);
    }
}

/* Main Images */
.main-buddhist-image,
.main-tea-image {
    position: relative;
    width: 250px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    margin: 0 auto;
}

.main-buddhist-image:hover,
.main-tea-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.buddhist-img,
.tea-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.main-buddhist-image:hover .buddhist-img,
.main-tea-image:hover .tea-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s ease;
}

.main-buddhist-image:hover .image-overlay,
.main-tea-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.main-buddhist-image:hover .overlay-text,
.main-tea-image:hover .overlay-text {
    transform: translateY(0);
}

/* Content Areas */
.buddhist-content,
.tea-content {
    padding: 20px;
}

.culture-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
}

.buddhist-part .culture-title {
    color: var(--primary-color);
}

.tea-part .culture-title {
    color: var(--success-color);
}

.detailed-content {
    margin-bottom: 30px;
}

.detailed-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.highlight-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin: 20px 0;
    border-left: 5px solid var(--accent-color);
}

.highlight-box h5 {
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1rem;
}

.highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-box li {
    padding: 6px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.highlight-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 900;
}

/* Stats Sections */
.buddhist-stats,
.tea-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: "Playfair Display", serif;
    margin-bottom: 5px;
}

.buddhist-part .stat-number {
    color: var(--primary-color);
}

.tea-part .stat-number {
    color: var(--success-color);
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #666;
}

/* Combined Experience Section */
.combined-experience {
    padding: 60px 0;
    background: var(--gradient-purple);
    color: white;
    position: relative;
}

.experience-title {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
}

.experience-text {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.btn-experience {
    padding: 12px 30px;
    background: white;
    border: none;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-experience:hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(247, 208, 2, 0.5);
}

@media (min-width: 768px) {
    .buddhist-animation-container,
    .tea-animation-container {
        height: 500px;
        margin-bottom: 0;
    }

    .main-buddhist-image,
    .main-tea-image {
        width: 300px;
        height: 350px;
    }

    .buddhist-element,
    .tea-element {
        max-width: 220px;
        padding: 15px 20px;
    }

    .element-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .element-content h5 {
        font-size: 0.9rem;
    }

    .element-content p {
        font-size: 0.8rem;
    }

    .culture-title {
        font-size: 2.2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {
    .buddhist-animation-container,
    .tea-animation-container {
        height: 550px;
    }

    .main-buddhist-image,
    .main-tea-image {
        width: 350px;
        height: 400px;
    }

    .buddhist-element,
    .tea-element {
        max-width: 250px;
    }

    .culture-title {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (min-width: 1200px) {
    .buddhist-animation-container,
    .tea-animation-container {
        height: 600px;
    }

    .main-buddhist-image,
    .main-tea-image {
        width: 400px;
        height: 450px;
    }
}

@media (max-width: 575.98px) {
    .buddhist-element,
    .tea-element {
        max-width: 160px;
        padding: 10px 12px;
    }

    .element-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .element-content h5 {
        font-size: 0.75rem;
    }

    .element-content p {
        font-size: 0.65rem;
    }

    .buddhist-stats,
    .tea-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-item {
        min-width: 100%;
    }
}
