/* Romantic Pink Theme */
:root {
    --primary-color: #D4A5A5;
    /* Soft Rose */
    --secondary-color: #F8E8E8;
    /* Pale Pink */
    --accent-color: #C08080;
    /* Deep Pink */
    --text-color: #604941;
    /* Warm Brown */
    --white: #FFFFFF;
    --font-heading: 'Great Vibes', cursive;
    --font-body: 'Crimson Text', serif;
    --spacing: 3rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
}

h1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: "❤";
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 10px;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Navigation */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.nav-brand {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.lang-switch button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    margin-left: 10px;
    transition: 0.3s;
}

.lang-switch button:hover,
.lang-switch button.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(212, 165, 165, 0.4), rgba(212, 165, 165, 0.4)), url('https://images.unsplash.com/photo-1522673607200-164d1b6ce486?w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 3rem 4rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero p {
    font-size: 1.5rem;
    font-style: italic;
    letter-spacing: 2px;
}

/* Story Section */
.story {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.story-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-color);
}

/* Gallery - Masonry feel */
.gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img:hover {
    transform: translateY(-5px);
}

/* Details Section */
.details {
    padding: 5rem 0;
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: 0.3s;
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(212, 165, 165, 0.3);
}

.info-label {
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Map Section */
.location-section {
    padding: 4rem 0;
    background: var(--secondary-color);
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--white);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RSVP */
.rsvp {
    padding: 5rem 0;
    background: linear-gradient(135deg, #D4A5A5 0%, #E8C1C1 100%);
    color: var(--white);
}

.rsvp h2::after {
    color: var(--white);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: var(--font-body);
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    background: var(--text-color);
    color: var(--white);
    font-size: 0.9rem;
}

/* Lang Visibility */
[data-lang="pl"] .lang-en {
    display: none;
}

[data-lang="en"] .lang-pl {
    display: none;
}

/* Mobile */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 4rem;
    }
}