/* ============================================================
   FONTS, VARIABLES & BASE STYLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:italic,wght@400;700&display=swap');

:root {
    --charcoal: #121212;
    --gold: #D4AF37;
    --white: #F5F5F5;
    --deep-charcoal: #1a1a1a;
    --muted-gray: #C0C0C0;
}

html { scroll-behavior: smooth; }
* { box-sizing: border-box; }

body {
    background-color: var(--deep-charcoal);
    color: var(--white);
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
}

/* --- THE GOLD SHINE ANIMATION --- */
@keyframes slowShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.refined-shine {
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 40%, #ffffff 50%, var(--gold) 60%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slowShine 5s linear infinite;
    display: inline-block;
}

/* ============================================================
   GLOBAL REFINED EXCELLENCE HEADER & NAV
   ============================================================ */
.header-main {
    background-color: #000000;
    padding: 8px 40px;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box, .oyster-box { flex-basis: 130px; }
.logo-box img { width: 100px; height: auto; display: block; }
.oyster-box img { width: 80px; height: auto; display: block; }
.oyster-box { display: flex; justify-content: flex-end; }
.header-title { text-align: center; flex-grow: 1; }
.header-title h1 { margin: 0; font-family: 'Playfair Display', serif; font-size: 1.8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.header-motto { margin: 0; font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: #ffffff; }

nav.global-nav { background-color: var(--deep-charcoal); padding: 15px 0; text-align: center; border-bottom: 1px solid #333; }
nav.global-nav a { color: var(--gold); text-decoration: none; margin: 0 20px; font-weight: bold; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; transition: color 0.3s ease; }
nav.global-nav a:hover { color: #ffffff; }

/* ============================================================
   MISSION-LINKED ARCHITECTURE (NEW INDEX)
   ============================================================ */
.mission-hero { display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px 40px 20px; }
.mission-text { font-size: 1.35rem; line-height: 1.9; color: var(--white); font-weight: 300; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 30px; }

/* ... [KEEP ALL REMAINING SECTIONS: PAGE 2, PAGE 3, PAGE 4, PAGE 5, PHOTO BOARDS, ETC.] ... */
/* ============================================================
   HEXAGON PHOTO GALLERY
   ============================================================ */
.hexagon-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

.hex-item {
    width: 200px; /* Adjust size as needed */
    height: 230px;
    background-color: var(--gold);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hex-item:hover {
    transform: scale(1.05);
}

.hex-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


