/* PTF VINTAGE THEME */
:root {
    --navy: #0F223D;
    --gold: #C5A059;
    --cream: #FDFBF7;
    --text: #1a1a1a;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--cream);
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--navy); }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* HEADER */
header {
    background-color: var(--navy);
    padding: 20px 0;
    border-bottom: 4px solid var(--gold);
    text-align: center;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

dt {
	font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a { color: var(--cream); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
nav a:hover { color: var(--gold); }

/* HERO & SECTIONS */
.hero {
    background: linear-gradient(rgba(15,34,61,0.7), rgba(15,34,61,0.7)), url('https://images.unsplash.com/photo-1503095392237-7362e31ee706?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--cream);
}

.hero h1 { color: var(--gold); font-size: 3.5rem; margin-bottom: 0; }
.container { max-width: 1000px; margin: 0 auto; padding: 60px 20px; }

/* FORMS */
.form-wrapper {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-top: 5px solid var(--gold);
}
iframe { width: 100%; border: none; min-height: 600px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 40px; text-align: center; }