/* Custom Font - Apple Garamond */
@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Apple Garamond';
    src: url('../fonts/AppleGaramond-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

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

:root {
    /* Color scheme from mockup */
    --primary-bg: #9B7C7C;
    --text-light: #FFFFFF;
    --text-dark: #000000;
    --overlay-bg: rgba(0, 0, 0, 0.3);

    /* Typography */
    --font-family: 'Apple Garamond', 'Georgia', serif;
    --font-size-base: 16px;
    --font-size-large: 24px;
    --font-size-xlarge: 36px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Landing Page Layout */
.landing-container {
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    position: relative;
    background-color: #000000;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.logo-container {
    grid-row: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.logo {
    max-width: 500px;
    max-height: 300px;
    width: 100%;
    height: auto;
}

/* Content Pages Layout */
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 80px 20px 100px;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --font-size-large: 20px;
        --font-size-xlarge: 28px;
    }

    .logo {
        max-width: 80%;
    }

    .page-container {
        padding: 60px 15px 80px;
    }
}
