/* style.css - MASTER FILE (Home & About) */

body, html {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: 'Times New Roman', serif;
    color: #3B3228;
    overflow-x: hidden;
}

/* --- SHARED: HEADER & NAV --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    background-color: #F4F1EA;
    font-family: Helvetica, sans-serif;
    font-size: 0.7rem;
    color: #6D665E;
    border-bottom: 1px solid #E0DBCF;
}

.main-header {
    text-align: center;
    padding: 30px 0;
    background-color: #F4F1EA;
    border-bottom: 1px solid #D6D0C2;
}

.logo-large {
    font-size: 2.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #3B3228;
    text-decoration: none;
}

.logo-sub {
    font-family: Helvetica, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 3px;
    margin-top: 5px;
    text-transform: uppercase;
    color: #8C857B;
}

.nav-bar {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    background-color: #F4F1EA;
    font-family: Helvetica, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-bar a {
    margin: 0 20px;
    text-decoration: none;
    color: #3B3228;
}

/* --- HOME PAGE SPECIFIC --- */
.hero {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #555; /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: #fff;
    padding-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-tag {
    background-color: #3B3228;
    color: #fff;
    padding: 5px 10px;
    font-family: Helvetica, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    margin: 0;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Home: Section Containers */
.section-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    border-top: 1px solid #D6D0C2;
    padding-top: 20px;
}

.section-title {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.section-subtitle {
    font-family: Helvetica, sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: #8C857B;
    margin-top: 10px;
    text-transform: uppercase;
}

/* Home: Grid Layout */
.offers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.offer-card {
    position: relative;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.offer-large {
    grid-row: 1 / span 2;
}

.offer-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

.offer-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Home: Rewards Section */
.rewards-section {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #E0DBCF;
    border-bottom: 1px solid #E0DBCF;
}

.rewards-btn {
    background-color: #3B3228;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-family: Helvetica, sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 30px;
}

/* --- ABOUT PAGE SPECIFIC --- */
.about-container {
    max-width: 1200px;
    margin: 60px auto;
    display: flex;
    padding: 0 20px;
    gap: 50px;
}

.sidebar {
    width: 250px;
    background-color: #F4F1EA;
    padding: 30px;
    height: fit-content;
}

.sidebar h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid #3B3228;
    padding-bottom: 15px;
    margin-top: 0;
}

.sidebar-links a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    color: #6D665E;
    font-family: Helvetica, sans-serif;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom: 1px solid #D6D0C2;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: #3B3228;
}

.sidebar-active {
    background-color: #D6D0C2;
    padding-left: 10px !important;
    color: #3B3228 !important;
}

.content-area {
    flex: 1;
}

.page-title {
    font-size: 2.5rem;
    border-bottom: 2px solid #3B3228;
    padding-bottom: 20px;
    margin-top: 0;
    color: #8C6938;
}

.triptych-images {
    display: flex;
    gap: 5px;
    margin-bottom: 40px;
}

.triptych-box {
    flex: 1;
    height: 150px;
    background-color: #ccc;
    background-size: cover;
    background-position: center;
}

.text-section h3 {
    font-size: 1.5rem;
    font-weight: normal;
    margin-bottom: 10px;
    color: #3B3228;
}

.text-section p {
    font-family: Helvetica, sans-serif;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.mission-grid {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.mission-box {
    flex: 1;
    background-color: #F9F7F2;
    padding: 30px 20px;
    text-align: center;
}

.mission-title {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #D6D0C2;
    padding-bottom: 15px;
    color: #3B3228;
}

.mission-text {
    font-family: Helvetica, sans-serif;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #666;
}

/* --- SHARED: FOOTER --- */
footer {
    background-color: #EBE7DE;
    padding: 60px 0;
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 0.7rem;
    color: #6D665E;
    line-height: 1.6;
    border-top: 1px solid #D6D0C2;
    margin-top: 50px;
}

.footer-logos {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #888;
    margin-bottom: 30px;
    text-transform: uppercase;
}