/* ===================================
   Google Fonts Import
   =================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #e8e8e8;
    background-color: #1a1410;
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

h4 {
    font-size: 1.35rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===================================
   Layout & Container
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 60px 0;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(255, 190, 0, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 20px;
}

.logo-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFBE00;
    letter-spacing: 1px;
}

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-menu a {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #e8e8e8;
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFBE00, transparent);
    transition: width 0.4s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFBE00;
    transition: all 0.3s ease;
}

/* ===================================
   Hero Sections
   =================================== */
.hero {
    min-height: 500px;
    background: linear-gradient(135deg, #1e1e1e 0%, #3a3a3a 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

/* Homepage Hero Background */
.hero:not(.hero-bnb):not(.hero-nk) {
    background-image: url('../images/heroes/bk_background.jpg');
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.brand-logo-hero {
    max-width: 300px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
}

/* Brand-specific hero backgrounds */
.hero-bnb {
    background-image: url('../images/heroes/bnb_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-nk {
    background-image: url('../images/heroes/nk_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-block;
    padding: 16px 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: #FFBE00;
    color: #000000;
    border-color: #FFBE00;
}

.btn-primary:hover {
    background-color: transparent;
    color: #FFBE00;
    border-color: #FFBE00;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 190, 0, 0.25);
}

.btn-brand-bnb {
    background-color: #C69C6B;
    color: #ffffff;
    border-color: #C69C6B;
}

.btn-brand-bnb:hover {
    background-color: transparent;
    color: #C69C6B;
    border-color: #C69C6B;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(198, 156, 107, 0.25);
}

.btn-brand-nk {
    background-color: #92CB7E;
    color: #000000;
    border-color: #92CB7E;
}

.btn-brand-nk:hover {
    background-color: transparent;
    color: #2B5E35;
    border-color: #2B5E35;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(43, 94, 53, 0.25);
}

/* ===================================
   Section Titles & Headings
   =================================== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFBE00;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #c4c4c4;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===================================
   Owner's Letter Section
   =================================== */
.letter-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.letter-content {
    max-width: 800px;
    margin: 0 auto;
}

.letter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFBE00;
}

.letter-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.letter-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.letter-content .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFBE00;
    padding: 1rem;
    background-color: rgba(255, 190, 0, 0.1);
    border-left: 4px solid #FFBE00;
    margin: 2rem 0;
}

.letter-content .emphasis {
    font-weight: 600;
    font-style: italic;
    color: #FFBE00;
}

.letter-content .emphasis.bold {
    font-size: 1.25rem;
}

.letter-content .cta-text {
    font-size: 1.15rem;
    margin-top: 2rem;
}

.vision-list, .approach-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.vision-list li, .approach-list li {
    list-style: decimal;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    color: #d0d0d0;
}

.signature {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 190, 0, 0.3);
}

.signature-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #e8e8e8;
}

.signature-email a {
    color: #FFBE00;
    font-weight: 500;
}

.signature-email a:hover {
    text-decoration: underline;
}

/* ===================================
   Brands Section (Homepage)
   =================================== */
.brands-section {
    padding: 80px 0;
    background-color: transparent;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.brand-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 190, 0, 0.2);
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 190, 0, 0.2);
    border-color: rgba(255, 190, 0, 0.4);
}

.brand-image {
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.brand-card.brand-bnb .brand-image {
    background: linear-gradient(135deg, #0F6048 0%, #1a8060 100%);
}

.brand-card.brand-nk .brand-image {
    background: linear-gradient(135deg, #2B5E35 0%, #3a7d4a 100%);
}

.brand-logo-overlay {
    color: #ffffff;
    text-align: center;
}

.brand-logo-text {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-content {
    padding: 2rem;
}

.brand-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #FFBE00;
}

.brand-tagline {
    font-style: italic;
    color: #c4c4c4;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.brand-features {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.brand-features li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: #d0d0d0;
}

.brand-content .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* ===================================
   Contact Section (Homepage)
   =================================== */
.contact-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    border: 1px solid rgba(255, 190, 0, 0.2);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFBE00;
}

.contact-info {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.contact-info a {
    color: #FFBE00;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: #1e1e1e;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFBE00;
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cccccc;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #FFBE00;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFBE00;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #FFBE00;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* ===================================
   Content Sections (Bread & Brew)
   =================================== */
.content-section {
    padding: 80px 0;
}

.content-split {
    max-width: 900px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #C69C6B;
}

.content-text h3 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

/* ===================================
   Pillars Section
   =================================== */
.pillars-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(198, 156, 107, 0.3);
}

.pillar-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #C69C6B;
}

.pillar-subtitle {
    font-style: italic;
    color: #FFBE00;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pillar-card p {
    margin-bottom: 1rem;
    color: #d0d0d0;
}

/* ===================================
   Story Section
   =================================== */
.story-section {
    padding: 80px 0;
}

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

.story-intro {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #C69C6B;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.offering-item {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    border-left: 4px solid #C69C6B;
}

.offering-item h4 {
    color: #FFBE00;
    margin-bottom: 0.75rem;
}

.offering-item p {
    color: #d0d0d0;
}

/* ===================================
   Founder Section
   =================================== */
.founder-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.founder-content {
    max-width: 900px;
    margin: 0 auto;
}

.founder-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

/* ===================================
   Mission Section
   =================================== */
.mission-section {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-top: 4px solid #C69C6B;
}

.mission-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #C69C6B;
}

.mission-card p {
    color: #d0d0d0;
}

/* ===================================
   Location Section
   =================================== */
.location-section {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

.location-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.location-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #C69C6B;
}

.address {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #d0d0d0;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #d0d0d0;
}

.contact-info a {
    color: #FFBE00;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links-inline {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-links-inline a {
    color: #C69C6B;
    font-weight: 600;
    font-size: 1.05rem;
}

.social-links-inline a:hover {
    color: #FFBE00;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .letter-content h2 {
        font-size: 2rem;
    }

    .letter-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 40px 0;
    }

    .hero {
        min-height: 400px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
