/* --- CSS Variables --- */
:root {
    /* Deep, moody blues/greys from the sky background */
    --bg-main: #2b3240; 
    --bg-secondary: #364152; /* Slightly lighter for the header */
    
    /* Text colors */
    --text-light: #e6edf5; /* Off-white for general text */
    /* The golden yellow from the text and boots in the image */
    --text-accent: #f2c94c; 
}

/* --- General Reset & Typography --- */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-light);
    line-height: 1.6;
}

/* Reusable container */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

/* Reusable Page Wrapper for non-Hero pages */
.page-content {
    padding: 60px 0;
    min-height: 60vh;
}

/* Reusable Titles */
.page-title {
    color: var(--text-accent);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* --- Header & Navigation --- */
header {
    background-color: var(--bg-secondary);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-accent);
    border-bottom: 2px solid var(--text-accent);
}

/* --- Global Button Styles --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--text-accent); 
    color: var(--bg-main);
}

.btn.primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.btn.secondary {
    border-color: var(--text-light);
    color: var(--text-light);
    background: transparent;
}

.btn.secondary:hover {
    border-color: var(--text-accent);
    color: var(--text-accent);
}

/* --- Social Icons Area --- */
.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--text-accent);
    transform: scale(1.1);
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 2rem 0;
    background-color: var(--bg-secondary);
    margin-top: auto;
    font-size: 0.8rem;
    opacity: 0.6;
}