——/* ============================================
   THE THAI BASE — Premium Brand Stylesheet
   UHNW Expat Audience — Navy / Gold / Stone
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ---- COLOUR TOKENS ---- */
:root {
    --navy:      #1A2535;
    --navy-deep: #0F1A27;
    --gold:      #B8943F;
    --gold-light:#E8D5A3;
    --stone:     #F5F2ED;
    --charcoal:  #3D3D38;
}

/* ---- BASE ---- */
body {
    font-family: 'Jost', 'Helvetica Neue', sans-serif;
    font-weight: 300;
    margin: 0;
    padding: 0;
    background-color: #F5F2ED;
    color: #3D3D38;
}

/* ---- NAVBAR ---- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background-color: #1A2535;
    border-bottom: 1px solid rgba(184,148,63,0.15);
}

.navbar img {
    height: 52px;
    width: auto;
    margin: 0;
    padding: 0;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.navbar a.nav-link {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232,213,163,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    margin-left: 28px;
}

.navbar a.nav-link:hover {
    color: #B8943F;
}

/* ---- HEADER / HERO ---- */
header {
    position: relative;
    background-image: url('images/hero2_resized.jpg');
    background-size: cover;
    background-position: center;
    color: #F5F2ED;
    padding: 120px 20px 100px;
    text-align: center;
}

header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,26,39,0.62);
    z-index: 0;
}

header > *:not(.overlay) {
    position: relative;
    z-index: 1;
}

/* ---- TYPOGRAPHY ---- */
h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-style: italic;
    font-size: clamp(2.4rem, 5vw, 4rem);
    color: #F5F2ED;
    letter-spacing: 0.02em;
    line-height: 1.15;
    margin-bottom: 0;
}

header h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    margin-bottom: 18px;
}

header h1::after {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: #B8943F;
    margin: 20px auto 0;
}

h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 300;
    font-size: 2rem;
    color: #1A2535;
    letter-spacing: 0.02em;
}

header p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: rgba(245,242,237,0.75);
    max-width: 560px;
    margin: 0 auto 36px;
    text-transform: uppercase;
}

/* ---- CTA BUTTONS ---- */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons a {
    background-color: transparent;
    color: #E8D5A3;
    border: 1px solid rgba(184,148,63,0.5);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.cta-buttons a:hover {
    background-color: #B8943F;
    border-color: #B8943F;
    color: #1A2535;
}

/* ---- SECTIONS ---- */
.section {
    padding: 80px 40px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    margin-bottom: 12px;
}

.section p {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 40px;
    letter-spacing: 0.03em;
}

/* ---- DESTINATION CARDS ---- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.card {
    background-color: #fff;
    color: #3D3D38;
    padding: 28px 24px;
    border-radius: 4px;
    border: 0.5px solid rgba(184,148,63,0.2);
    box-shadow: none;
    transition: border-color 0.25s ease, transform 0.25s ease;
    text-align: left;
}

.card:hover {
    border-color: #B8943F;
    transform: translateY(-3px);
}

.card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #1A2535;
    margin: 0 0 8px;
}

.card p {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 16px;
    line-height: 1.6;
}

.card a {
    color: #B8943F;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    border-bottom: 0.5px solid rgba(184,148,63,0.35);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

      .card a:hover {
          color: #1A2535;
          border-color: #1A2535;
      }

/* ---- FOOTER ---- */
footer {
    background-color: #0F1A27;
    color: rgba(232,213,163,0.4);
    padding: 40px 40px 30px;
    text-align: center;
    border-top: 1px solid rgba(184,148,63,0.1);
}

footer p {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

footer a {
    color: rgba(232,213,163,0.45);
    margin: 0 12px;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #B8943F;
}

/* ---- DISCLOSURE (muted) ---- */
.disclosure, .affiliate-note {
    font-size: 10px;
    color: rgba(232,213,163,0.25);
    letter-spacing: 0.05em;
    margin-top: 20px;
}
