/* style/huong-dan-choi.css */

:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --background-dark: #0A0A0A;
    --card-background: #111111;
    --text-light: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-huong-dan-choi {
    font-family: Arial, sans-serif;
    color: var(--text-light);
    background-color: var(--background-dark);
}

.page-huong-dan-choi__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-huong-dan-choi__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.2;
}

.page-huong-dan-choi__text-block {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-huong-dan-choi__hero-section {
    padding-top: 10px; /* Small top padding as per rule */
    padding-bottom: 60px;
    background-color: var(--background-dark);
    position: relative;
}

.page-huong-dan-choi__hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-huong-dan-choi__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
}

.page-huong-dan-choi__hero-title {
    font-size: clamp(2.2em, 4vw, 3.5em); /* Clamp for H1 */
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-huong-dan-choi__hero-description {
    font-size: 1.2em;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.page-huong-dan-choi__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-huong-dan-choi__hero-image {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: center;
}

.page-huong-dan-choi__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Buttons */
.page-huong-dan-choi__btn-primary,
.page-huong-dan-choi__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-huong-dan-choi__btn-primary {
    background: var(--button-gradient);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-huong-dan-choi__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-huong-dan-choi__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-huong-dan-choi__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.page-huong-dan-choi__cta-buttons--center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Guide Section */
.page-huong-dan-choi__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-huong-dan-choi__guide-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-huong-dan-choi__icon-box-media {
    width: 200px; /* Base size for square/round images */
    height: 200px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-huong-dan-choi__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure image is round */
    display: block;
}