:root {
    --bg-color: #FDFBF7;
    --card-bg: #F5F1EA;
    --text-color: #1A1A1A;
    --text-muted: #5A5A5A;
    --accent-color: #A3937B;
    --accent-dark: #7E6F58;
    --border-color: #E5DFC2;
    --border-light: #EFECE6;
    --white: #FFFFFF;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Header Navigation */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
}


nav {
    max-width: 1100px;
    margin: auto auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}


.nav-logo {
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

a.langLink:link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

/* visited link */
a.langLink:visited {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}

/* mouse over link */
a.langLink:hover {
  color: var(--accent-color);
}




/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 550px;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.45)),
    url('pictures/heroBG.jpg?auto=format&fit=crop&w=1920&q=80') center no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    line-height: 1.2;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-date {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}

.timer-box {
	max-width: 800px;
    justify-content: center;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
    list-style: none;
    display: flex;
    gap: 15px;

}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background: transparent;
}

.btn:hover {
    background-color: var(--white);
    color: var(--text-color);
}

.btn-dark {
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-dark:hover {
    background-color: var(--text-color);
    color: var(--white);
}

/* Common Section Layout */
section {
    padding: 90px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-color);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-content {	
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
	text-align: center;
	margin-top: -25px;
}

/* Welcome & Feier Section */
.welcome-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #4A4A4A;
    line-height: 1.8;
}


.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.event-date {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    background-color: var(--card-bg);
    padding: 35px 20px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-3px);
}

.info-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    stroke: var(--accent-dark);
    stroke-width: 1.5;
    fill: none;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Banner Image */
.banner-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 4px;
    margin: 50px 0 20px 0;
}

/* Timeline / Ablauf Section */
.timeline-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
    padding-left: 25px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--bg-color);
    border: 2px solid var(--accent-color);
}

.timeline-time {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--accent-dark);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Accommodation Section */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.hotel-card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.hotel-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.hotel-body {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-body h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.hotel-badge {
    display: inline-block;
    background-color: var(--card-bg);
    color: var(--accent-dark);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.hotel-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* FAQ Accordion Section */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-item summary {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-answer {
    margin-top: 14px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer ul {
    margin-left: 20px;
    margin-top: 8px;
}

/* Footer */
footer {
    background-color: #1A1A1A;
    color: #E0E0E0;
    text-align: center;
    padding: 60px 24px;
    margin-top: 60px;
}

footer h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 12px;
}

footer p {
    font-size: 0.9rem;
    color: #A0A0A0;
    margin-bottom: 24px;
}

.footer-contacts {
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--accent-color);
}

a.footerLink:link {
    text-decoration: none;
    color: var(--accent-color);
}

/* visited link */
a.footerLink:visited {
	text-decoration: none;
    color: var(--accent-color);
}

/* mouse over link */
a.footerLink:hover {
  color: #E0E0E0;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    section { padding: 60px 16px; }
    .section-header h2 { font-size: 2.2rem; }
}