/* Landing Page Styles for FotoZakázky.cz */

:root {
    --primary-color: #1e3a8a;
    --accent-color: #0ea5e9;
    --secondary-color: #6c757d;
    --dark-color: #1f2937;
    --light-color: #f8f9fa;
    --success-color: #10b981;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Výška navbar + trochu prostoru */
}

/* Navbar */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand i {
    color: white;
    margin-right: 0.5rem;
}

.navbar .btn-primary i {
    font-size: 0.9rem;
    vertical-align: middle;
    margin-right: 0.3rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    padding: 150px 0 100px;
    margin-top: 56px;
}

.hero-section h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-section p {
    animation: fadeInUp 1.2s ease-out;
}

.hero-section .btn {
    animation: fadeInUp 1.4s ease-out;
}

.hero-section img {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-section img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5),
                0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.features-section {
    background: var(--light-color);
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 0;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.benefit-item h4 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.benefit-item p {
    color: var(--secondary-color);
    margin: 0;
}

/* Capabilities Section */
.capabilities-section {
    background: var(--light-color);
}

.capability-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.capability-card h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.capability-card ul {
    list-style: none;
    padding: 0;
}

.capability-card li {
    padding: 0.5rem 0;
    color: var(--secondary-color);
    position: relative;
    padding-left: 1.5rem;
}

.capability-card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Pricing Section */
.pricing-section {
    background: var(--light-color);
}

.pricing-section .row {
    align-items: stretch;
}

.pricing-section [class*="col-"] {
    display: flex;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.pricing-card-popular {
    border: 3px solid var(--accent-color);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.pricing-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.pricing-body {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.price {
    margin-bottom: 1.5rem;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 0.3rem;
}

.price .period {
    font-size: 1.2rem;
    color: var(--secondary-color);
    display: block;
    margin-top: 0.5rem;
}

.pricing-savings {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 3rem;
}

.pricing-savings i {
    color: var(--accent-color);
    margin-right: 0.3rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 0.8rem 0;
    font-size: 1rem;
    color: var(--dark-color);
}

.pricing-features i {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.pricing-card .btn {
    margin-top: 1rem;
    font-weight: 600;
    border-radius: 10px;
    padding: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--dark-color);
    color: white;
    padding: 80px 0;
}

.cta-section .btn-light {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
}

.footer h5 {
    font-weight: 700;
    color: white;
}

.footer p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
}

/* Placeholder styling */
input::placeholder,
textarea::placeholder {
    color: #cbd5e0 !important;
    opacity: 0.6;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #cbd5e0 !important;
    opacity: 0.6;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #cbd5e0 !important;
    opacity: 0.6;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #cbd5e0 !important;
    opacity: 0.6;
}

/* Modal styling */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    border: none;
    padding: 1.5rem 2rem;
}

.modal-header .modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1.5rem 2rem;
    background: #f9fafb;
    border-radius: 0 0 20px 20px;
}

.modal-body .form-label {
    font-weight: 600;
    color: #1f2937;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.modal-body .form-control,
.modal-body .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.modal-body .form-control:focus,
.modal-body .form-select:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.modal-body textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.modal-body .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #d1d5db;
    margin-top: 0.15rem;
}

.modal-body .form-check-input:checked {
    background-color: #0ea5e9;
    border-color: #0ea5e9;
}

.modal-body .form-check-label {
    font-size: 0.95rem;
    color: #4b5563;
    margin-left: 0.5rem;
}

.modal-body .alert-info {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(30, 58, 138, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 10px;
    color: #1e3a8a;
}

.modal-footer .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modal-footer .btn-secondary {
    background: #6c757d;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 100%);
    border: none;
}

.modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

/* Scroll Animations */
.feature-card,
.benefit-item,
.capability-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/* Navigation - Přihlášení odkaz */
.nav-login-link {
    color: #adb5bd !important;
}

/* Hero Section - Podnadpis */
.hero-subtitle {
    display: block;
    font-size: 0.65em;
    margin-top: 0.3em;
}

/* Footer Styles */
.footer-subtitle {
    font-size: 0.75rem;
    color: #adb5bd;
}

.footer-content {
    font-size: 0.85rem;
}

.footer-copyright {
    font-size: 0.85rem;
}

.footer-rights {
    font-size: 0.75rem;
    color: #adb5bd;
}

/* Honeypot - skrytý spam ochrana */
.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
}

/* Cookie Consent Banner */
#cookieConsent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
}
