/* Global Styles */
body {
    font-family: 'Cormorant Garamond', serif;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    color: #2c3e50;
    font-weight: 600;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

/* Navigation */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* Handle mobile */
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

nav ul li a.active,
nav ul li a:hover {
    border-bottom: 1px solid #2c3e50;
}

/* Hero Section (Common) */
.hero,
.events-hero,
.travel-hero,
.registry-hero,
.faq-hero,
.photos-hero,
.story-hero {
    background-color: transparent;
    padding: 50px 20px;
    margin: 0 auto 40px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1,
.events-hero h1,
.travel-hero h1,
.registry-hero h1,
.faq-hero h1,
.photos-hero h1,
.story-hero h1 {
    margin: 0;
    padding: 0;
    line-height: 1.1;
    font-size: 2.5rem; /* Standardized hero title size */
}

.header-banner {
    width: 100%;
    height: calc(100vh - 80px); /* Fill most of the screen minus the header/nav */
    background-size: cover;
    background-position: center bottom;
    position: relative;
    margin-bottom: 60px;
}

.banner-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    text-align: left;
}

.banner-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    color: #fff;
    margin: 0;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.banner-content p {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #fff;
    margin: 10px 0 0 0;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .banner-content {
        left: 20px;
        bottom: 30px;
    }
    .banner-content h1 {
        font-size: 2.5rem;
    }
    .banner-content p {
        font-size: 1.2rem;
    }
}

/* Sections */
section {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    text-align: center;
}

.statement p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: normal;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Schedule Boxes */
.schedule {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.schedule-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    width: 330px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.schedule-box:hover {
    transform: translateY(-5px);
}

.schedule-box.highlight {
    border-color: #b79c76;
    /* Gold/Bronze accent */
    transform: scale(1.05);
    z-index: 1;
}

.schedule-box h3 {
    margin-top: 0;
    text-transform: uppercase;
    font-size: 1.35rem;
    letter-spacing: 2px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.schedule-box p {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Events Page */
.event-card {
    background: #fff;
    padding: 40px;
    margin-bottom: 40px;
    border-left: 5px solid #b79c76;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.event-card h2 {
    margin-top: 0;
    font-weight: bold;
}

.event-card p {
    font-size: 1.15rem;
}

.event-card .date {
    font-weight: bold;
    color: #b79c76;
    text-transform: uppercase;
    font-size: 1.05rem;
    letter-spacing: 1px;
}

/* Travel Page */
.travel-section {
    text-align: left;
    margin-bottom: 40px;
}

.travel-content p,
.travel-content ul,
.travel-content li {
    font-size: 1.15rem;
}

.travel-content h2 {
    font-size: 1.9rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    display: inline-block;
}

.travel-content h3 {
    font-size: 1.9rem;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    display: inline-block;
}

.travel-content h4 {
    font-size: 1.25rem;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.radio-group label {
    display: inline-block;
    margin-right: 20px;
    font-weight: normal;
}

.submit-btn {
    background-color: #2c3e50;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #b79c76;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    text-align: center;
    font-size: 0.8rem;
    margin-top: auto;
    position: relative;
}

/* Couple Names Section */
.couple-names {
    text-align: center;
    padding: 60px 20px 20px;
    background-color: #f9f9f9;
}

.couple-names h1 {
    font-size: 4rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.couple-names p {
    font-size: 1.5rem;
    color: #b79c76;
    font-weight: 300;
    margin-top: 10px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}