@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700&family=Noto+Serif:ital,wght@0,400;0,600;0,700;1,400&display=swap&subset=vietnamese');

:root {
    --color-text: #111111;
    --color-accent: #a68a61;
    --color-accent-soft: #c5a47e;
    --color-muted-bg: #fcfcfc;
    --color-subtle-border: #e5e7eb;
    --color-muted-text: #6b7280;
    --container-width: 1280px;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam Pro', 'Segoe UI', sans-serif;
    color: var(--color-text);
}

* {
    box-sizing: border-box;
}

::selection {
    background: var(--color-accent-soft);
    color: #fff;
}

.home-page {
    min-height: 100vh;
    background: #fff;
}

.home-container {
    width: min(var(--container-width), calc(100% - 3rem));
    margin: 0 auto;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section {
    padding: 6rem 0;
}

.section-muted {
    background: var(--color-muted-bg);
}

.section-white {
    background: #fff;
}

.section-divider-bottom {
    border-bottom: 1px solid #f0f0f0;
}

.section-kicker {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section-kicker-light {
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    font-family: 'Noto Serif', 'Times New Roman', serif !important;
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
}

.section-title-light {
    color: #fff;
}

.section-title-link {
    color: inherit;
    text-decoration: none;
}

.section-title-link:hover {
    opacity: 0.92;
}

.section-title-compact {
    margin-bottom: 1rem;
}

.section-line {
    width: 4rem;
    height: 1px;
    background: var(--color-accent);
    margin: 1.5rem 0 2rem;
}

.section-line-center {
    margin-left: auto;
    margin-right: auto;
}

.section-line-light {
    background: rgba(255, 255, 255, 0.65);
}

.section-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.75;
}

.section-text-muted {
    color: var(--color-muted-text);
}

.section-text-light {
    color: rgba(255, 255, 255, 0.9);
}

.section-text-spaced {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}

.btn {
    border: 1px solid transparent;
    padding: 0.7rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-inline {
    width: fit-content;
}

.btn-outline-light {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--color-text);
}

.btn-solid-gold {
    color: #fff;
    background: var(--color-accent-soft);
    border-color: var(--color-accent-soft);
}

.btn-solid-gold:hover {
    background: transparent;
    color: var(--color-accent-soft);
}

.btn-solid-dark {
    color: #fff;
    background: var(--color-text);
    border-color: var(--color-text);
}

.btn-solid-dark:hover {
    color: var(--color-text);
    background: #fff;
}

.btn-outline-dark {
    color: var(--color-text);
    background: transparent;
    border-color: var(--color-text);
}

.btn-outline-dark:hover {
    color: #fff;
    background: var(--color-text);
}

.home-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    height: 5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #f1f1f1;
}

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

.home-nav {
    display: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.home-nav-right {
    justify-content: flex-end;
}

.home-nav-link {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.home-nav-link:hover {
    color: var(--color-accent);
}

.home-nav-link-accent {
    color: var(--color-accent);
    font-weight: 700;
}

.home-branding {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.brand-badge {
    background: var(--color-accent);
    color: #fff;
    padding: 0.25rem 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Noto Serif', 'Times New Roman', serif;
    line-height: 1;
}

.brand-name {
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
}

.brand-name-small {
    font-size: 1.5rem;
}

.home-icon-button,
.home-mobile-menu-button {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

.home-icon-button:hover {
    color: var(--color-accent);
}

.home-mobile-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.home-mobile-menu-button {
    border-radius: 999px;
    color: #64748b;
}

.home-mobile-menu-button:hover {
    background: #f1f5f9;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
    text-align: center;
    color: #fff;
    max-width: 64rem;
}

.hero-title {
    margin: 0 0 1.25rem;
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero-title-accent {
    color: var(--color-accent-soft);
    text-transform: lowercase;
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    margin: 0 auto 2.5rem;
    max-width: 54rem;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4rem;
}

.intro-media {
    position: relative;
}

.intro-image-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.intro-image {
    transition: transform 1s ease;
}

.intro-image-wrap:hover .intro-image {
    transform: scale(1.05);
}

.intro-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.floating-badge {
    position: absolute;
    right: -2rem;
    bottom: -2rem;
    background: #fff;
    border: 1px solid #f3f4f6;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    padding: 1.75rem;
}

.floating-badge-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-badge-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-title {
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.floating-badge-subtitle {
    font-size: 0.75rem;
    color: var(--color-muted-text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

.triple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
}

.column-head {
    margin-bottom: 2rem;
}

.column-kicker {
    display: block;
    color: #9ca3af;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
}

.column-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin-top: 1.5rem;
}

.list-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
}

.feature-index {
    width: 4rem;
    height: 4rem;
    flex-shrink: 0;
    border: 1px solid #d1d5db;
    color: var(--color-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: 1.25rem;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.feature-index-small {
    font-size: 0.9rem;
}

.feature-index-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
}

.feature-meta {
    color: #9ca3af;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.feature-title {
    color: var(--color-text);
    font-size: 1.1rem;
    transition: color 0.25s ease;
}

.feature-item:hover .feature-index {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.feature-item:hover .feature-title {
    color: var(--color-accent);
}

.feature-item:hover .feature-index-active {
    color: #fff;
}

.image-stack {
    display: none;
    position: relative;
    height: 37.5rem;
}

.image-stack-top,
.image-stack-bottom {
    position: absolute;
    width: 80%;
    height: 25rem;
}

.image-stack-top {
    top: 0;
    left: 0;
    z-index: 1;
}

.image-stack-bottom {
    right: 0;
    bottom: 0;
    z-index: 2;
    border: 8px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-head-center {
    margin-bottom: 4rem;
    text-align: center;
}

.section-head-text {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gallery-card {
    cursor: pointer;
}

.gallery-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 3 / 4;
}

.gallery-media img {
    transition: transform 0.7s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}

.gallery-title {
    margin: 0 0 0.25rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.25s ease;
}

.gallery-link {
    margin: 0;
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted-text);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.gallery-card:hover .gallery-media img {
    transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-card:hover .gallery-title {
    color: var(--color-accent-soft);
}

.section-action-center {
    margin-top: 3rem;
    text-align: center;
}

.section-events {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.events-background,
.events-overlay {
    position: absolute;
    inset: 0;
}

.events-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.events-overlay {
    background: rgba(166, 138, 97, 0.9);
}

.events-content {
    position: relative;
    z-index: 1;
}

.events-head {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.events-copy {
    max-width: 40rem;
}

.events-search-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.events-search-input-wrap {
    position: relative;
    width: 100%;
}

.events-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted-text);
}

.events-search-input {
    width: 100%;
    border: 1px solid #fff;
    background: #fff;
    color: var(--color-text);
    padding: 0.9rem 1rem 0.9rem 3rem;
    font-size: 1rem;
}

.events-search-input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.55);
    outline-offset: 1px;
}

.btn-event-search {
    white-space: nowrap;
}

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

.event-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.22);
}

.event-card-media {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.event-card-media img {
    transition: transform 0.7s ease;
}

.event-card:hover .event-card-media img {
    transform: scale(1.05);
}

.event-count-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.event-card-body {
    padding: 2rem;
    text-align: center;
}

.event-type {
    color: var(--color-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.event-title {
    margin: 0 0 0.75rem;
    color: var(--color-text);
    font-family: 'Noto Serif', 'Times New Roman', serif;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.25s ease;
}

.event-card:hover .event-title,
.event-card:hover .event-link {
    color: var(--color-accent);
}

.event-meta {
    margin: 0;
    color: var(--color-muted-text);
    font-size: 0.9rem;
}

.event-footer {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.event-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    transition: color 0.25s ease;
}

.home-footer {
    border-top: 1px solid #f1f1f1;
    background: #fff;
    padding: 4rem 0;
}

.home-footer-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.home-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.home-footer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.home-footer-address {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.82rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-align: center;
}

.home-footer-address .icon-sm {
    color: var(--color-accent-soft);
}

.home-footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #4b5563;
    font-size: 0.82rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.home-footer-phone .icon-sm {
    color: var(--color-accent-soft);
}

.home-footer-phone a {
    color: inherit;
    text-decoration: none;
}

.home-footer-phone a:hover {
    color: var(--color-text);
}

.home-footer-copy {
    color: var(--color-muted-text);
    font-size: 0.9rem;
    text-align: center;
}

.home-footer-links {
    display: flex;
    gap: 2rem;
}

.home-footer-links a {
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.home-footer-links a:hover {
    color: var(--color-accent-soft);
}

.icon-sm {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
}

mat-icon,
.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';
}

@media (min-width: 640px) {
    .hero-actions {
        flex-wrap: nowrap;
    }

    .events-search-bar {
        flex-direction: row;
    }

    .events-search-input-wrap {
        width: 18rem;
    }
}

@media (min-width: 768px) {
    .home-nav {
        display: flex;
    }

    .home-mobile-actions {
        display: none;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .event-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-footer-inner {
        flex-direction: row;
    }

    .home-footer-meta {
        max-width: 34rem;
    }
}

@media (min-width: 1024px) {
    .split-layout-intro {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-content {
        padding-left: 3rem;
    }

    .triple-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }

    .image-stack {
        display: block;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .events-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 1.5rem;
    }
}

@media (max-width: 1023px) {
    .floating-badge {
        display: none;
    }
}
