:root {
    /* Colors */
    --color-primary: #0b4e9d;
    --color-cream: #faf3eb;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Font Sizes */
    --font-size-hero: 75pt;
    --font-size-logo: 21pt;
    --font-size-nav: 14pt;

    /* Font Weights */
    --font-weight-light: 300;
    --font-weight-medium: 500;

    /* Spacing */
    --letter-spacing: 0.05em;

    /* Transitions */
    --transition-hover: opacity 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    overflow: hidden;
    height: 100vh;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    background: var(--color-cream);
    z-index: 100;
}

.logo {
    font-family: var(--font-display);
    font-size: var(--font-size-logo);
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: var(--letter-spacing);
}

.subscribe {
    font-family: var(--font-body);
    font-size: var(--font-size-nav);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    letter-spacing: var(--letter-spacing);
}

.subscribe:hover {
    opacity: 0.7;
    transition: var(--transition-hover);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: var(--color-primary);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/images/hero-image.JPEG);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.88;
    z-index: 0;
}

.hero h1 {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-light);
    color: var(--color-cream);
    text-align: center;
    line-height: 1.2;
}
