:root {
    --primary-color: #dee6dd;
    --secondary-color: #4a4a4a;
    --accent-color: #8b7355;
    --text-color: #333333;
    --light-color: #ffffff;
}

/* Font Declarations */
@font-face {
    font-family: 'Moontime';
    src: url('assets/moon-time-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Panforte Light';
    src: url('assets/panforte_light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Panforte Light', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    font-size: 1.2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Font Classes */
.panforte-font {
    font-family: 'Panforte Light', sans-serif;
}

.moontime-font {
    font-family: 'Moontime', sans-serif;
}

/* Navbar Styles */
.navbar {
    background-color: var(--light-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
}

.navbar-brand {
    color: var(--accent-color) !important;
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo {
    height: 48px;
    width: auto;
    margin-top: -5px;
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    font-size: 2.6rem;
    line-height: 1;
    padding: 0.5rem 0.75rem;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1rem;
    padding: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: visible;
}

.hero-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.hero-text {
    position: absolute;
    top: 20%;
    left: 70%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 90%;
}

.hero-text h1 {
    color: var(--light-color);
    font-size: 9rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    white-space: nowrap;
    line-height: 1.1;
    font-family: 'Panforte Light', sans-serif;
}

.hero-text h2 {
    color: var(--light-color);
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 1rem 0 0;
    white-space: nowrap;
    line-height: 1.2;
    font-family: 'Panforte Light', sans-serif;
}

.hero-text h2 .fa-heart {
    font-size: 0.8em;
    margin-left: 0.5rem;
    animation: heartbeat 1.5s ease-in-out infinite;
    color: var(--light-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 200;
    opacity: 0.9;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.hero-text h1 .panforte-font {
    font-size: 1.2em;
}

.hero-text h1 .moontime-font {
    font-size: 0.8em;
    margin: 0 0.5rem;
}

/* Podcast Section */
.podcast-section {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.podcast-row {
    display: flex;
    align-items: stretch;
}

.audio-player {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    align-items: center;
}

.podcast-info {
    display: flex;
    align-items: center;
    height: 100%;
}

.podcast-text {
    text-align: left;
    width: 100%;
}

.podcast-title {
    color: var(--secondary-color);
    font-size: 5rem;
    margin-left: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.podcast-subtitle {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-left: 2rem;
    margin-bottom: 0;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 768px) {
    .podcast-row {
        flex-direction: column;
        align-items: stretch;
    }
    .podcast-info {
        order: 2;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
    }
    .audio-player {
        order: 1;
        margin-bottom: 0;
        min-height: unset;
        padding: 1rem;
    }
    .podcast-text {
        text-align: center;
        width: 100%;
    }
    .podcast-title {
        font-size: 2.2rem;
        margin-left: 0;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    .podcast-subtitle {
        font-size: 1.4rem;
        margin-left: 0;
        text-align: center;
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.couple-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-text {
    padding: 2rem;
}

.about-text h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.about-text p {
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    padding: 0.7rem 0;
    color: var(--secondary-color);
    margin-top: auto;
}

.footer-brand {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.footer p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 1.1rem;
    }

    .navbar .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .navbar-brand {
        flex: 0 1 auto;
        margin-right: 0;
        font-size: 1.7rem;
    }
    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .navbar {
        position: relative;
        margin-bottom: -0.5rem;
    }

    .navbar-logo {
        height: 34px;
    }
    
    .hero {
        margin-top: 0;
        padding: 0;
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    .hero-image img {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    .hero-text {
        top: 20%;
        left: 70%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        padding: 0 1rem;
    }
    .hero-text h1 {
        font-size: 2.0rem;
        white-space: normal;
    }
    .hero-text h2 {
        font-size: 0.9rem;
        white-space: normal;
    }
    .hero-text h2 .fa-heart {
        font-size: 0.9em;
    }
    .podcast-section {
        padding: 2rem 0;
    }
    .podcast-title {
        margin: 1rem 0;
        text-align: center;
        font-size: 2rem;
    }
    .about-section {
        padding: 3rem 0;
    }
    .about-text {
        padding: 1rem;
        margin-top: 2rem;
    }
    .about-text h2 {
        font-size: 2.2rem;
    }
    .about-text p {
        font-size: 1.2rem;
    }
    .footer-brand {
        font-size: 2rem;
    }
}

/* Form Styles (for RSVP page) */
.form-control {
    border: 1px solid var(--primary-color);
    padding: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 115, 85, 0.25);
}

.form-label {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 0.75rem 2rem;
    font-size: 1.3rem;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Location Page Styles */
.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    margin: 2rem 0;
}

.venue-details h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.venue-details h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
}

.venue-details p {
    font-size: 1.4rem;
}

/* Dresscode Page Styles */
.dress-code-section {
    padding: 5rem 0;
}

.dress-code-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.dress-code-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.dress-code-card p, 
.dress-code-card li {
    font-size: 1.4rem;
}

.dress-code-card ul {
    padding-left: 1.5rem;
}

.dress-code-card li {
    margin-bottom: 0.5rem;
}

.info-section {
    background: var(--light-color);
    padding: 4rem 0 3rem 0;
    position: relative;
    z-index: 1;
}

.info-title {
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: 'Panforte Light', sans-serif;
    text-align: center;
    margin-bottom: 0.5rem;
}

.info-subtitle {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
    font-family: 'Panforte Light', sans-serif;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    height: 100%;
}

.info-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--secondary-color);
    background: var(--primary-color);
    border-radius: 16px;
    padding: 2rem 1rem 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(139, 115, 85, 0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    width: 100%;
    min-width: 180px;
    max-width: 260px;
    height: 230px;
    min-height: 230px;
    max-height: 230px;
    flex: 1 1 0;
}

.info-link:hover, .info-link:focus {
    box-shadow: 0 4px 16px rgba(139, 115, 85, 0.15);
    transform: translateY(-4px) scale(1.03);
    color: var(--accent-color);
}

.info-icon {
    font-size: 2.8rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.info-link h3 {
    font-size: 2.1rem;
    font-family: 'Panforte Light', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-link p {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 0;
    text-align: center;
    font-family: 'Panforte Light', sans-serif;
}

@media (max-width: 992px) {
    .info-grid {
        gap: 1.5rem 0;
    }
    .info-link {
        min-width: 140px;
        max-width: 220px;
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .info-section {
        padding: 2.5rem 0 2rem 0;
    }
    .info-title {
        font-size: 2.1rem;
    }
    .info-link {
        min-width: 120px;
        max-width: 100%;
        padding: 1.2rem 0.2rem 1rem 0.2rem;
        height: 160px;
        min-height: 160px;
        max-height: 160px;
    }
    .info-icon {
        font-size: 2rem;
        margin-bottom: 0.7rem;
    }
    .info-link h3 {
        font-size: 1.4rem;
    }
    .info-link p {
        font-size: 1.1rem;
    }
}

.dresscode-hero {
    background: #dee6dd;
    min-height: unset;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7rem;
    padding-bottom: 1.5rem;
    position: relative;
    overflow: visible;
}

.dresscode-title h1 {
    font-family: 'Panforte Light', sans-serif;
    color: #222;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.2em;
}

.dresscode-title .moontime-font {
    font-size: 2.2rem;
    color: #6d7267;
    margin-top: 0.5rem;
}

.dresscode-kleurentips {
    margin-top: 2.5rem;
}

.dresscode-kleurentips .panforte-font {
    font-size: 1.3rem;
    color: #6d7267;
    margin-bottom: 1.5rem;
    display: block;
}

/* Nieuwe blobs-row als scallop met ronde schijven */
.blobs-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 2;
}
.blob {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #fff;
    box-shadow: none;
    border: 18px solid #fff;
    position: relative;
    z-index: 2;
    opacity: 1;
    margin-bottom: -80px;
}

.blob-green {
    background: #dee6dd;
}
.blob-pink {
    background: #ecbfc4;
}
.blob-yellow {
    background: #eddbbb;
}
.blob-blue {
    background: #bfccd8;
}
.blob-olive {
    background: #bfc89f;
}

/* Scallop effect onderaan de dresscode-hero */
.dresscode-hero::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    height: 60px;
    background: transparent;
    z-index: 1;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="60" viewBox="0 0 500 60" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0 60 Q 50 0 100 60 T 200 60 T 300 60 T 400 60 T 500 60 V60 H0Z" fill="white"/></svg>') bottom center/100% 60px no-repeat;
}

@media (max-width: 768px) {
    .dresscode-hero {
        padding-top: 5rem;
        padding-bottom: 1rem;
        overflow: visible;
    }
    .blobs-row {
        gap: 0.rem;
    }
    .blob {
        width: 70px;
        height: 70px;
        margin-bottom: -48px;
        border-width: 12px;
        box-shadow: none;
    }
    .dresscode-hero::after {
        height: 32px;
        background-size: 100% 32px;
        bottom: -24px;
    }
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

.main-title {
    font-family: 'Panforte Light', sans-serif;
    color: #222;
    font-size: 4.2rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.5em;
    text-align: center;
}

.section-title {
    font-family: 'Panforte Light', sans-serif;
    color: var(--accent-color);
    font-size: 2.8rem;
    margin-bottom: 0.5em;
    text-align: center;
}

.subtitle {
    /* font-family: 'A Day Without Sun', sans-serif; */
    color: var(--secondary-color);
    font-size: 2.9rem;
    margin-bottom: 1.5em;
    text-align: center;
}

.body-text {
    font-family: 'Panforte Light', sans-serif;
    color: var(--text-color);
    font-size: 1.7rem;
    line-height: 1.7;
    margin-bottom: 1.2em;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3.0rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .subtitle {
        font-size: 2.0rem;
    }
    .body-text {
        font-size: 1.18rem;
    }
}

/* Dresscode Summer Chic Highlight */
.summer-chic-highlight {
    font-family: 'Moontime', cursive;
    font-size: 8rem;
    color: #d4af37;
    line-height: 1.1;
    margin-top: 1.2rem;
    margin-bottom: 0.2rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .summer-chic-highlight {
        font-size: 4.5rem;
    }
}

/* Programma sectie */
.programma-section {
    background: #fff;
    padding: 4rem 0 2rem 0;
}
.programma-title {
    font-family: 'Panforte Light', sans-serif;
    font-size: 4rem;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    text-align: center;
}
.programma-container {
    max-width: 600px;
    margin: 0 auto;
}
.programma-timeline {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 0;
}
.programma-lijn-container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
}
.programma-lijn {
    width: 100%;
    height: 100%;
    background: #d4af37;
    border-radius: 2px;
}
.programma-content {
    position: relative;
    z-index: 1;
}
.programma-event {
    position: relative;
    height: 3rem;
    margin-bottom: 1rem;
}
.programma-tijd {
    position: absolute;
    left: 50%;
    transform: translateX(-9rem);
    font-family: 'Panforte Light', sans-serif;
    font-size: 2.2rem;
    color: #7d8a7a;
    text-align: right;
    white-space: nowrap;
}
.programma-item {
    position: absolute;
    right: 50%;
    transform: translateX(17rem);
    font-family: 'Panforte Light', sans-serif;
    font-size: 2.2rem;
    color: #222;
    text-align: left;
    white-space: nowrap;
    width: 200px;
}
@media (max-width: 600px) {
    .programma-title { font-size: 2.2rem; }
    .programma-timeline { max-width: 350px; }
    .programma-event { height: 2rem; }
    .programma-tijd, .programma-item { 
        font-size: 1.2rem;
    }
    .programma-tijd { transform: translateX(-5rem); }
    .programma-item { 
        transform: translateX(10rem);
        width: 120px;
    }
} 