/* ============================================================
   BRAND PAGE CSS - VINED
   ============================================================ */

/* Page Wrapper */
.brand-page-wrapper {
    background: #000000;
    min-height: 100vh;
    width: 100%;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* ============================================================
   1. HERO SECTION (UNIQUE BRAND HERO BACKGROUND)
   ============================================================ */
.brand-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 160px 0 60px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.brand-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.brand-hero-content {
    max-width: 650px;
}

.brand-hero-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 24px;
}

.brand-hero-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.brand-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.brand-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #E2E8F0;
}

/* ============================================================
   2. OUR STORY SECTION (SEPARATE SECTION WITH BG_ABOUT.PNG)
   ============================================================ */
.brand-story-section {
    position: relative;
    width: 100%;
    padding: 100px 0;
    background-image: url('../../img/background/bg_about.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.story-header {
    max-width: 900px;
    margin: 0 auto 32px auto;
}

.brand-tag {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #AC7D24;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.story-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.story-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #D2D2D2;
}

.story-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.story-badge {
    padding: 10px 24px;
    border: 1px solid #AC7D24;
    border-radius: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    background: rgba(172, 125, 36, 0.08);
}

/* ============================================================
   OUTER WRAPPER WITH GRADIENT BACKGROUND
   ============================================================ */
.brand-outer-wrapper {
    width: 100%;
    background: linear-gradient(180deg, #302003 0%, #000000 100%);
    padding: 24px 16px 0 16px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

/* ============================================================
   ONLY EXPLORE OUR MENU HAS BLACK BACKGROUND & ROUNDED ARCH
   ============================================================ */
.brand-menu-container {
    background: #000000;
    border-radius: 60px;
    border: 1px solid rgba(172, 125, 36, 0.4);
    box-shadow: 0px -10px 40px rgba(172, 125, 36, 0.15);
    padding-top: 60px;
    padding-bottom: 0;
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.menu-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.menu-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin: 0 auto;
}

.menu-divider .m-line {
    height: 1px;
    flex: 1;
}

.menu-divider .m-line.left {
    background: linear-gradient(90deg, rgba(172, 125, 36, 0) 0%, #AC7D24 100%);
}

.menu-divider .m-line.right {
    background: linear-gradient(90deg, #AC7D24 0%, rgba(172, 125, 36, 0) 100%);
}

.menu-divider .m-diamond {
    width: 8px;
    height: 8px;
    background: #AC7D24;
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* MENU GRID: 5 columns, 0 gap, full width of black container */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.menu-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #111;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.menu-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.menu-item:hover img {
    transform: scale(1.06);
}

/* ============================================================
   BELOW MENU: GET IN TOUCH & CTA ON GRADIENT BACKGROUND
   ============================================================ */
.brand-below-menu {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-bottom: 60px;
}

.brand-contact {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header {
    margin-bottom: 48px;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #FFFFFF;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 340px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid #AC7D24;
    border-radius: 24px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(172, 125, 36, 0.12);
    box-shadow: 0 10px 30px rgba(172, 125, 36, 0.2);
}

.cc-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.cc-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.cc-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.cc-detail {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #D2D2D2;
    margin: 0 0 4px 0;
}

.contact-available {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #AC7D24;
    letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .brand-outer-wrapper {
        padding: 0;
        background: #000000;
        width: 100%;
    }
    .brand-menu-container {
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding-top: 40px;
    }
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .brand-outer-wrapper {
        padding: 0;
        background: #000000;
        width: 100%;
    }
    .brand-menu-container {
        border-radius: 0;
        border: none;
        box-shadow: none;
        padding-top: 30px;
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-hero-title {
        font-size: 26px;
    }
    .story-title, .menu-title, .contact-title {
        font-size: 24px;
    }
}
