﻿/* ==== Partner Section (Luxury Style) ==== */
.honey-partner-section {
    padding: 80px 20px;
    background: #1A1A1A;
    font-family: "Montserrat", sans-serif;
    text-align: center;
}

.honey-partner-container {
    max-width: 1170px;
    margin: 0 auto;
}

/* Title */
.honey-partner-section .section-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 60px;
}

    .honey-partner-section .section-title span {
        color: #d4af37; /* vàng nhấn */
    }

/* Grid layout */
.honey-partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 0;
    text-align: left;
}

/* Card wrapper */
.honey-partner-card {
    position: relative;
    perspective: 1000px;
    display: flex;
    justify-content: center;
}

/* Rotated card */
.honey-partner-card-rotate {
    border-radius: 12px;
    width: 100%;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: rotate(-4.5deg);
    position: relative;
    z-index: 1;
    background: #2a2a2a; /* nền card tối */
    border: 2px solid #d4af37; /* viền vàng */
    box-sizing: border-box;
}

.honey-partner-card:hover .honey-partner-card-rotate {
    transform: rotate(-4.5deg) translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.5);
}

/* lớp card phụ phía sau */
.honey-partner-card-rotate::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    z-index: -1;
    transform: rotate(4deg);
    background: #333;
}

/* nội dung bên trong giữ thẳng */
.honey-partner-card-inner {
    transform: rotate(4.5deg);
}

/* icon + text */
.honey-partner-card .icon img {
    width: 60px;
    margin-bottom: 12px;
}

.honey-partner-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37; /* vàng nhấn */
    margin-bottom: 8px;
}

.honey-partner-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ddd;
}

/* Button */
.honey-partner-btn {
    margin-top: 50px;
}

    .honey-partner-btn a {
        display: inline-block;
        padding: 14px 28px;
        background: #d4af37;
        color: #1A1A1A;
        font-weight: 700;
        border-radius: 30px;
        text-decoration: none;
        transition: background 0.3s ease, color 0.3s ease;
    }

        .honey-partner-btn a:hover {
            background: #8b6508;
            color: #fff;
        }

/* Responsive */
@media (max-width: 991px) {
    .honey-partner-grid {
        gap: 40px;
    }

    .honey-partner-card .icon img {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .honey-partner-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .honey-partner-card-rotate {
        padding: 20px;
    }

    .honey-partner-card .icon img {
        width: 45px;
    }
}

@media (max-width: 480px) {
    .honey-partner-section .section-title {
        font-size: 1.5rem;
    }

    .honey-partner-card-rotate {
        padding: 15px;
    }

    .honey-partner-card .icon img {
        width: 40px;
    }

    .honey-partner-card h3 {
        font-size: 1rem;
    }

    .honey-partner-card p {
        font-size: 0.9rem;
    }
}
