/* ===== SVATBA NA FAŘE - ROMANTIC WEDDING THEME ===== */

:root {
    --primary: #9B7B5B;
    --primary-dark: #7A5F45;
    --primary-light: #C4A882;
    --gold: #C9A961;
    --cream: #FDF9F3;
    --blush: #F5EDE6;
    --text-main: #3D3D3D;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --line-color: #E5DDD3;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: var(--text-main);
    background: var(--cream);
    line-height: 1.8;
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--primary-dark);
}

h1 { font-size: 3.5rem; letter-spacing: 2px; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 50px; }
h3 { font-size: 1.4rem; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(0px);
}

header.scrolled {
    background: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 14px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
}

header.scrolled .logo {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

header.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-fara a {
    background: rgba(255,255,255,0.15);
    padding: 8px 16px !important;
    border: 1px solid rgba(255,255,255,0.3);
}

header.scrolled .nav-fara a {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

header.scrolled .hamburger span {
    background: var(--text-main);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: kenBurnsFade 24s infinite;
}

.slide-1 { background-image: url('../img/hero1.jpg'); animation-delay: 0s; }
.slide-2 { background-image: url('../img/hero2.JPG'); animation-delay: 6s; }
.slide-3 { background-image: url('../img/hero3.jpg'); animation-delay: 12s; }
.slide-4 { background-image: url('../img/hero4.jpg'); animation-delay: 18s; }

@keyframes kenBurnsFade {
    0% { opacity: 0; transform: scale(1); }
    4% { opacity: 1; }
    25% { opacity: 1; }
    29% { opacity: 0; transform: scale(1.08); }
    100% { opacity: 0; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1 {
    color: var(--white);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 25px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5);
}

.hero-tagline {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 4px 20px rgba(0,0,0,0.5);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 45px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #5a4633 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    color: var(--white);
    padding: 15px;
}

.stat-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 15px;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--gold);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--white);
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 400;
    margin-left: 2px;
    opacity: 0.85;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.75);
}

/* ===== INTRO ===== */
.intro {
    padding: 100px 0;
    background: var(--white);
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.intro h2 {
    margin-bottom: 30px;
}

.intro p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    background: var(--blush);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.gallery-grid-full img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    cursor: pointer;
}

.gallery-grid-full img:hover {
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 30px;
}

.gallery-cta button {
    cursor: pointer;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.show {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: opacity 0.3s;
    z-index: 3001;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: opacity 0.3s;
    z-index: 3001;
}

.lightbox-nav:hover {
    opacity: 0.7;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 0;
    background: var(--blush);
}

.price-card {
    background: var(--white);
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.price-card.main-price {
    border: 2px solid var(--gold);
}

.price-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.price-amount span {
    font-size: 1.2rem;
    color: var(--text-light);
}

.price-amount.secondary {
    font-size: 2rem;
    color: var(--gold);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.price-includes {
    list-style: none;
    text-align: left;
    max-width: 350px;
    margin: 0 auto;
}

.price-includes li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-color);
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.price-card.extra {
    background: var(--cream);
    border: 1px solid var(--line-color);
}

.price-card.extra h3 {
    margin-bottom: 10px;
}

.price-card.extra p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../img/paralax.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.cta-section .btn {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-section .btn:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--blush);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.contact-card h4 {
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
}

.contact-card p + p {
    margin-top: 5px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 400;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-map {
    height: 100%;
    min-height: 350px;
}

.contact-map iframe {
    border-radius: 8px;
    filter: grayscale(15%);
    height: 100%;
    min-height: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

/* ===== FOOTER ===== */
footer {
    background: #2C2C2C;
    color: rgba(255,255,255,0.7);
    padding: 60px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-content > p {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 0;
        transition: right 0.4s ease;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links li { width: 100%; text-align: center; }
    
    .nav-links a {
        color: var(--text-main) !important;
        display: block;
        padding: 20px;
        font-size: 1rem;
        border-bottom: 1px solid var(--line-color);
    }
    
    .nav-links a::after { display: none; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hamburger.active span { background: var(--text-main); }
    
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid-full { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid-full img { height: 180px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
    .contact-map iframe { min-height: 300px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-number { font-size: 2.5rem; }
    .stat-unit { font-size: 1.2rem; }
    .stat-icon { width: 35px; height: 35px; margin-bottom: 10px; }
    .stat-item { padding: 10px; }
    .lightbox-nav { font-size: 35px; padding: 10px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    
    .hero h1 { font-size: 2.8rem; }
    h2 { font-size: 1.8rem; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.2rem; }
    .price-amount { font-size: 2.5rem; }
    .gallery-grid-full img { height: 140px; }
    .cta-section { background-attachment: scroll; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
