/* --- ZÁKLADNÝ RESET A NASTAVENIA --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e67e22;
    /* Oranžová z ilustrácie */
    --secondary-color: #f39c12;
    --dark-color: #2c3e50;
    /* Tmavá modro-šedá z vesty */
    --text-color: #555;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--white);
}

p + p {
    margin-top: 15px;
}

/* --- LAYOUT A KONTAJNERY --- */
.container {
    max-width: 1140px;
    margin: auto;
    padding: 20px 20px;
}

.container.small {
    max-width: 650px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-white {
    background-color: var(--white);
}

.bg-dark {
    background-color: var(--dark-color);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

/* --- SPOLOČNÉ ELEMENTY --- */
.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 18px;
}

.shadow {
    box-shadow: var(--shadow);
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.btn-full {
    width: 100%;
    margin-top: 15px;
}

h1 {
    color: #111;
    font-weight: 800;
    margin-bottom: 20px;
}

h2 {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 20px;
}

h3 {
    color: var(--dark-color);
    font-weight: 800;
    margin-bottom: 20px;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
}

.pre-title {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

/* --- TOP HEADER MENU --- */
.top-nav {
    width: 100%;
    position: relative;
    z-index: 100;
    background: var(--white);
}

.nav-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-red {
    background-color: #c60b1e;
    /* Spanish Flag Red */
    height: 35px;
    display: flex;
    align-items: center;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.top-bar-content a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.top-bar-content a:hover {
    color: #ffd700;
    /* Spanish yellow */
}

.top-bar-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
    margin-right: 15px;
}

.main-nav-white {
    background-color: #ffffff;
    height: 70px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.main-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-logo {
    max-height: 68px;
    width: auto;
    display: block;
}

.smart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #c60b1e;
    text-decoration: none;
    background: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #c60b1e;
    transition: var(--transition);
}

.smart-link:hover {
    background-color: #c60b1e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(198, 11, 30, 0.2);
}

.smart-link .arrow {
    transition: transform 0.3s ease;
}

.smart-link:hover .arrow {
    transform: translateX(4px);
}

/* --- NEW NAVIGATION STYLES --- */
.nav-divider {
    width: 1px;
    height: 30px;
    background-color: #d0d0d0;
    margin: 0 30px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-phone {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.contact-phone:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-area {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    margin-right: 10px;
}

.contact-phone-icon {
    display: none;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition);
}

.contact-phone-icon:hover {
    opacity: 0.9;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    padding: 20px 0;
    position: relative;
}

.hero h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 35px;
    max-width: 600px;
}

.tag {
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 15px;
}

/* Animácia pre matadora */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- MOTIVATION CARDS (with small illustrations) --- */
.cards-container {
    margin-top: 5px;
}

.card {
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: #e0e0e0;
}

.card-icon-container {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon {
    max-width: 100%;
    max-height: 100%;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card p {
    font-size: 1rem;
    color: #666;
}

/* --- CONTENT SECTIONS --- */
.check-list {
    list-style: none;
    margin-top: 25px;
}

.check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 900;
    font-size: 1.2rem;
}

.feature-box {
    background-color: var(--light-bg);
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

/* --- CONTACT FORM --- */
.contact {
    padding: 80px 0;
}

.contact h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.contact p {
    color: #ccc;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.form-message {
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-weight: 600;
    text-align: center;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background-color: rgba(101, 163, 13, 0.2);
    color: #a3e635;
    border: 2px solid #65A30D;
}

.form-message.error {
    background-color: rgba(220, 38, 38, 0.2);
    color: #ef8484;
    border: 2px solid #DC2626;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 60px 20px;
}

.testimonials-container {
    margin-top: 5px;
}

.testimonial-card {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    min-height: 80px;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 700;
    margin: 0;
}

.facebook-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #f0f0f0;
    color: #1877f2;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.facebook-reviews-link:hover {
    background-color: #1877f2;
    color: #fff;
    transform: translateY(-3px);
}

.facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: currentColor;
    color: inherit;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: Arial, sans-serif;
}

.facebook-reviews-link:hover .facebook-icon {
    background-color: #fff;
    color: #1877f2;
}

/* --- FOOTER --- */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer .small-text {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* --- DESTINATIONS GRID (4 COLUMNS WITH COLORS) --- */
.grid-destinations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.grid-destinations a {
    text-decoration: none;
    color: inherit;
}

.grid-destinations .card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-align: left;
}

.grid-destinations .card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.grid-destinations .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    width: 100%;
}

.grid-destinations .card-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-align: left;
    flex: 1;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
}

.grid-destinations .card-aus .card-title {
    background: linear-gradient(90deg, #65A30D, #a8e063);
}

.grid-destinations .card-nz .card-title {
    background: linear-gradient(90deg, #0284C7, #5bb9e8);
}

.grid-destinations .card-can .card-title {
    background: linear-gradient(90deg, #DC2626, #ef8484);
}

.grid-destinations .card-spanielsko .card-title {
    background: linear-gradient(90deg, #D97706, #f5b963);
}

.grid-destinations .card-icon {
    width: 120px;
    height: 120px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -24px;
    margin-left: auto;
    flex-shrink: 0;
}

.grid-destinations .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grid-destinations .card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
}

.grid-destinations .feature-list {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.grid-destinations .feature-item {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.25;
    font-weight: 400;
    text-align: left;
    flex-direction: row-reverse;
}

.grid-destinations .feature-item .feature-icon {
    margin-right: 12px;
    margin-left: 0;
    margin-top: 2px;
    flex-shrink: 0;
}

.grid-destinations .feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    margin-right: 0;
    margin-top: 2px;
    font-size: 0.7rem;
    color: white;
    flex-shrink: 0;
    font-weight: bold;
}

.grid-destinations .card-aus .feature-icon {
    background: #65A30D;
}

.grid-destinations .card-nz .feature-icon {
    background: #0284C7;
}

.grid-destinations .card-can .feature-icon {
    background: #DC2626;
}

.grid-destinations .card-spanielsko .feature-icon {
    background: #D97706;
}

.grid-destinations .card-action {
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.grid-destinations .btn-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.grid-destinations .card-aus .btn-arrow {
    background: #65A30D;
}

.grid-destinations .card-nz .btn-arrow {
    background: #0284C7;
}

.grid-destinations .card-can .btn-arrow {
    background: #DC2626;
}

.grid-destinations .card-spanielsko .btn-arrow {
    background: #D97706;
}

.grid-destinations .btn-arrow:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* --- RESPONZIVITA (MOBILE FRIENDLY) --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-image {
        max-width: 300px;
        margin: 0 auto 30px auto;
    }

    .reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .card {
        padding: 30px;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: var(--text-color);
        cursor: pointer;
        margin: 0 10px;
    }

    .mobile-menu-toggle:hover {
        color: var(--primary-color);
    }

    .nav-divider {
        display: none !important;
    }

    .nav-links {
        display: none !important;
    }

    .nav-links.mobile-menu-open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid #f0f0f0;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        gap: 0;
        z-index: 100;
    }

    .nav-links.mobile-menu-open a {
        padding: 12px 20px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 600;
        display: block;
    }

    .nav-links.mobile-menu-open a:hover {
        background-color: #f9f9f9;
        color: var(--primary-color);
    }

    .contact-area {
        display: flex;
        flex-direction: row;
        gap: 4px;
        align-items: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .contact-box {
        display: none !important;
    }

    .contact-phone-icon {
        display: flex !important;
    }
}