/* svatba-v-zahranici.eu - Elegant Wedding Theme */
/* Theme: Romantic Elegance - Dusty Rose & Gold */

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #fefcfb;
    --color-text: #3d2c2e;
    --color-text-light: #6b5557;
    --color-rose: #c4868b;
    --color-rose-dark: #a66a6e;
    --color-rose-light: #f0d5d7;
    --color-gold: #c9a84c;
    --color-gold-light: #e8d9a0;
    --color-cream: #faf5ef;
    --color-white: #ffffff;
    --color-border: #e8ddd0;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1140px;
    --content-width: 780px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-rose-dark);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--color-gold);
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    line-height: 1.3;
    font-weight: 700;
}

h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.85rem;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-rose-light);
}

h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    color: var(--color-rose-dark);
}

h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.2rem;
}

ul, ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.4rem;
}

strong {
    color: var(--color-text);
}

blockquote {
    border-left: 4px solid var(--color-gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--color-cream);
    font-style: italic;
    border-radius: 0 6px 6px 0;
}

/* ===== Header ===== */
.site-header {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    padding: 0;
    margin: 0;
}

.nav-menu li a {
    color: var(--color-text-light);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--color-rose-dark);
    border-bottom-color: var(--color-rose);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.3rem;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--color-rose-light) 0%, var(--color-cream) 50%, var(--color-gold-light) 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== Main Content ===== */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

.article-content {
    max-width: var(--content-width);
    margin: 0 auto;
}

.article-content img {
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(61, 44, 46, 0.08);
}

.article-meta {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

/* ===== Destination Cards (Homepage) ===== */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.dest-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(61, 44, 46, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid var(--color-border);
}

.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(61, 44, 46, 0.12);
}

.dest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.dest-card-body {
    padding: 1.3rem 1.5rem;
}

.dest-card-body h3 {
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--color-text);
}

.dest-card-body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 0.8rem;
}

.dest-card-body .card-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-rose-dark);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.dest-card-body .card-link:hover {
    color: var(--color-gold);
}

/* ===== Info Box ===== */
.info-box {
    background: var(--color-cream);
    border: 1px solid var(--color-gold-light);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.info-box h3 {
    color: var(--color-gold);
    margin-top: 0;
    font-size: 1.15rem;
}

.info-box ul {
    margin-bottom: 0;
}

/* ===== Price Table ===== */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

.price-table th {
    background: var(--color-rose);
    color: var(--color-white);
    padding: 0.8rem 1rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
}

.price-table td {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.price-table tr:nth-child(even) td {
    background: var(--color-cream);
}

.price-table tr:hover td {
    background: var(--color-rose-light);
}

/* ===== FAQ Section ===== */
.faq-section {
    margin: 2.5rem 0;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--color-white);
    border: none;
    padding: 1rem 1.5rem;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--color-cream);
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--color-rose);
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.2rem;
    max-height: 500px;
}

/* ===== Reference / Testimonials ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-rose-light);
    position: absolute;
    top: 0.3rem;
    left: 1rem;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    padding-top: 1.5rem;
    font-size: 0.95rem;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: 600;
    color: var(--color-rose-dark);
    margin-top: 0.8rem;
    font-size: 0.9rem;
}

/* ===== Contact Form ===== */
.contact-form {
    max-width: 600px;
    margin: 2rem 0;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s;
}

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

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.btn {
    display: inline-block;
    background: var(--color-rose);
    color: var(--color-white);
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.btn:hover {
    background: var(--color-rose-dark);
    color: var(--color-white);
}

/* ===== Footer ===== */
.site-footer {
    background: var(--color-text);
    color: var(--color-rose-light);
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(240, 213, 215, 0.8);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--color-gold-light);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: rgba(240, 213, 215, 0.7);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(240, 213, 215, 0.7);
    margin-bottom: 0.3rem;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240, 213, 215, 0.15);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(240, 213, 215, 0.5);
}

.footer-bottom a {
    color: rgba(240, 213, 215, 0.5);
}

.footer-bottom a:hover {
    color: var(--color-gold-light);
}

/* ===== Internal Links Section ===== */
.related-destinations {
    background: var(--color-cream);
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
}

.related-destinations h3 {
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.related-links a {
    background: var(--color-white);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--color-border);
    transition: all 0.2s;
}

.related-links a:hover {
    background: var(--color-rose);
    color: var(--color-white);
    border-color: var(--color-rose);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--color-text-light);
}

.breadcrumb a:hover {
    color: var(--color-rose-dark);
}

.breadcrumb span {
    margin: 0 0.4rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero { padding: 2.5rem 1.5rem; }
    .hero h1 { font-size: 2.2rem; }

    .main-content { padding: 1.5rem 1rem; }

    .header-inner { padding: 0.6rem 1rem; }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li a {
        display: block;
        padding: 0.7rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .menu-toggle {
        display: block;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .price-table {
        font-size: 0.85rem;
    }

    .price-table th,
    .price-table td {
        padding: 0.5rem 0.6rem;
    }
}

@media (max-width: 480px) {
    html { font-size: 15px; }
    h1 { font-size: 1.75rem; }
    .hero h1 { font-size: 1.85rem; }
    .logo a { font-size: 1.25rem; }
}
