
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
    background: #000; /* To avoid white flashes */
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* Removes bottom space under images */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SVG Icons */
.icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-lg {
    width: 48px;
    height: 48px;
}

.icon-xl {
    width: 64px;
    height: 64px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 4px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.logo {
    display: inline-block;
    transition: all 0.3s ease;
    padding: 10px 15px;
    margin: 5px 0;
    border: none;
    background: none;
}

.logo:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.logo:active {
    transform: scale(0.98);
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: height 0.3s ease;
}

/* Štýly pre väčšie obrazovky */
@media (min-width: 1024px) {
    .logo {
        padding: 12px 18px;
        margin: 8px 0;
    }
    
    .logo:focus {
        outline: 2px solid #dc2626;
        outline-offset: 2px;
    }
    
    .logo:active {
        transform: scale(0.97);
    }
}

/* Štýly pre veľké obrazovky */
@media (min-width: 1440px) {
    .logo {
        padding: 15px 20px;
        margin: 10px 0;
    }
    
    .logo:focus {
        outline: 2px solid #dc2626;
        outline-offset: 2px;
    }
    
    .logo:active {
        transform: scale(0.95);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    border-color: #dc2626;
    background: #dc2626;
    transform: skew(-5deg);
}

/* App Download Button */
.nav-menu li a.app-download {
    background:#dc2626;
    border-color: #dc2626;
    font-weight: bold;
    animation: pulse-glow 2s infinite;
}

.nav-menu li a.app-download:hover {
    background: linear-gradient(45deg, #e55a2b, #e88a1a);
    border-color: #e55a2b;
    transform: skew(-5deg) scale(1.05);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.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(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    border: 4px solid #fff;
    transform: rotate(12deg);
    opacity: 0.1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 160px;
    right: 80px;
    width: 96px;
    height: 96px;
    border: 4px solid #fff;
    transform: rotate(-45deg);
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: center;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: invert(1);
    animation: float 3s ease-in-out infinite;
}

.new-member-badge {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.new-member-badge::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: #fff;
    transform: rotate(2deg);
}

.new-member-badge .badge-content {
    position: relative;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: 4px solid #fff;
    transform: rotate(-1deg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo img {
    height: clamp(120px, 15vw, 200px);
    width: auto;
    filter: drop-shadow(8px 8px 0px #000000);
    transition: all 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(12px 12px 0px #000000);
}



.hero-subtitle {
    position: relative;
    margin-bottom: 3rem;
}

.hero-subtitle .subtitle-content {
    background: #fff;
    color: #000;
    padding: 1.5rem 2rem;
    transform: rotate(1deg);
    border: 4px solid #000;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
    from { transform: rotate(1deg) translateY(30px); opacity: 0; }
    to { transform: rotate(1deg) translateY(0); opacity: 1; }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.btn {
    padding: 16px 32px;
    border: 4px solid;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #dc2626;
    color: #fff;
    border-color: #000;
    box-shadow: 4px 4px 0px 0px #000000;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 0px 0px #000000;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    transform: scale(1.05);
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    background: #000;
    transform: rotate(45deg);
    opacity: 0.1;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title .title-main {
    position: relative;
    display: inline-block;
}

.section-title .title-main::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: #000;
    transform: rotate(-2deg);
}

.section-title .title-main .title-text {
    position: relative;
    background: #fff;
    color: #000;
    padding: 1rem 2rem;
    border: 4px solid #000;
    font-size: clamp(2rem, 6vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rubik Burned', cursive;
}

.section-title .title-sub {
    margin-top: 2rem;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    display: inline-block;
    transform: rotate(1deg);
    border: 4px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    transform: rotate(2deg);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

.about-features {
    background: #000;
    color: #fff;
    padding: 2rem;
    transform: rotate(2deg);
    border: 4px solid #000;
    box-shadow: 6px 6px 0px 0px #000000;
}

.about-features h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.about-features ul {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    display: flex;
    align-items: center;
}

.about-features li svg {
    position: absolute;
    left: 0;
    color: #dc2626;
}

/* Špeciálne štýly pre logá v about-features */
.about-features .brand-logo {
    height: 32px;
    margin: 0 10px 8px 0;
    border: 2px solid #dc2626;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 8px;
    padding: 6px;
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.85;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

.about-features .brand-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-features .brand-logo:hover {
    filter: grayscale(0%) brightness(1.1);
    opacity: 1;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4), 0 2px 8px rgba(0,0,0,0.15);
    border-color: #dc2626;
}

.about-features .brand-logo:hover::before {
    left: 100%;
}

/* Kontajner pre logá */
.brand-logos-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.brand-logos-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
}

.brand-logos-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
}

/* Animácia pre logá pri načítaní */
@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 0.85;
        transform: translateY(0) scale(1);
    }
}

.about-features .brand-logo {
    animation: logoFadeIn 0.6s ease forwards;
}

.about-features .brand-logo:nth-child(1) { animation-delay: 0.1s; }
.about-features .brand-logo:nth-child(2) { animation-delay: 0.2s; }
.about-features .brand-logo:nth-child(3) { animation-delay: 0.3s; }
.about-features .brand-logo:nth-child(4) { animation-delay: 0.4s; }
.about-features .brand-logo:nth-child(5) { animation-delay: 0.5s; }
.about-features .brand-logo:nth-child(6) { animation-delay: 0.6s; }
.about-features .brand-logo:nth-child(7) { animation-delay: 0.7s; }
.about-features .brand-logo:nth-child(8) { animation-delay: 0.8s; }
.about-features .brand-logo:nth-child(9) { animation-delay: 0.9s; }

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f5f5f5;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border: 4px solid #000;
    padding: 2rem;
    box-shadow: 6px 6px 0px 0px #000000;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:nth-child(odd) {
    transform: rotate(1deg);
}

.service-card:nth-child(even) {
    transform: rotate(-1deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-8px);
    box-shadow: 8px 8px 0px 0px #000000;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 4px solid #fff;
}

.service-title {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    margin-bottom: 1rem;
    transform: rotate(-1deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rules Section */
.rules {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.rules-content {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.rules-text {
    background: #000;
    color: #fff;
    padding: 2.5rem;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px 0px #000000;
    font-size: 1.1rem;
    line-height: 1.8;
}

.rules-section {
    margin-bottom: 3rem;
}

.rules-section:last-child {
    margin-bottom: 0;
}

.rules-text h3 {
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 0.5rem;
}

.rules-text ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 0;
}

.rules-text li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.rules-text li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
    font-size: 1.2rem;
}

.rules-text li:last-child {
    margin-bottom: 0;
}

.rules-text p {
    margin-bottom: 1.5rem;
}

.rules-text strong {
    color: #dc2626;
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: #000;
    color: #fff;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background: #fff;
    color: #000;
    border: 4px solid #fff;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0px 0px #ffffff;
}

.price-card:nth-child(odd) {
    transform: rotate(1deg);
}

.price-card:nth-child(even) {
    transform: rotate(-1deg);
}

.price-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.price-card.popular {
    transform: scale(1.1);
    box-shadow: 10px 10px 0px 0px #ffffff;
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%) rotate(12deg);
    background: #dc2626;
    color: #fff;
    padding: 8px 24px;
    border: 4px solid #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    text-align: center;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    transform: rotate(-2deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.25rem;
    font-family: 'Rubik Burned', cursive;
}

.plan-price {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-price .price {
    font-size: 2.5rem;
}

.plan-price .period {
    font-size: 1.2rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.plan-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    margin-right: 12px;
    transform: rotate(45deg);
}

.plan-btn {
    width: 100%;
    padding: 12px;
    border: 4px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px 0px #000000;
    text-decoration: none;
    display: block;
    text-align: center;
}

.plan-btn.primary {
    background: #dc2626;
    color: #fff;
}

.plan-btn.secondary {
    background: #fff;
    color: #000;
}

.plan-btn:hover {
    box-shadow: 6px 6px 0px 0px #000000;
    transform: scale(1.02);
}

/* Hours Section */
.hours {
    padding: 5rem 0;
    background: #fff;
    position: relative;
}

.hours-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hours-table {
    background: #000;
    color: #fff;
    padding: 2rem;
    transform: rotate(-1deg);
    border: 4px solid #000;
    box-shadow: 6px 6px 0px 0px #000000;
}

.hours-table h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #dc2626;
    text-align: center;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
    align-items: center;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li.weekend span:first-child {
    color: #dc2626;
    font-weight: bold;
}

.hours-note {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95em;
    color: #ccc;
    background: #222;
    padding: 1rem;
    border-radius: 4px;
    border: 1px dashed #444;
}

.special-hours {
    background: #f5f5f5;
    padding: 2rem;
    border: 4px solid #000;
    transform: rotate(1deg);
}

.special-hours h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #000;
    color: #fff;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: #fff;
    color: #000;
    padding: 2rem;
    transform: rotate(-1deg);
    border: 4px solid #fff;
    box-shadow: 6px 6px 0px 0px #ffffff;
}

.contact-info h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-icon {
    margin-right: 1rem;
    color: #dc2626;
    font-size: 1.5rem;
    width: auto;
    height: auto;
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
    display: inline-block;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    animation: none;
    min-width: 24px;
    flex-shrink: 0;
}

.contact-icon:hover {
    transform: scale(1.1);
    color: #b91c1c;
    animation: none;
}

.contact-icon i {
    position: relative;
    z-index: 2;
    filter: none;
    display: inline-block;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.contact-details {
    flex: 1;
}

.contact-details h3 {
    margin: 0 0 0.5rem 0;
    color: #dc2626;
    font-size: 1.2rem;
}

.contact-details p {
    margin: 0;
    line-height: 1.4;
}

.contact-details a {
    color: inherit;
    text-decoration: none;
}

.contact-details a:hover {
    color: #dc2626;
}

.contact-form {
    background: #fff;
    color: #000;
    padding: 2rem;
    transform: rotate(1deg);
    border: 4px solid #fff;
    box-shadow: 6px 6px 0px 0px #ffffff;
}

.contact-form h3 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #dc2626;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 3px solid #000;
    background: #f5f5f5;
    font-size: 1rem;
}

.form-group textarea {
    width: 100%;
    max-width: 100%;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.submit-btn {
    background: #dc2626;
    color: #fff;
    border: 4px solid #000;
    padding: 16px 32px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px 0px #000000;
    width: 100%;
}

.submit-btn:hover {
    background: #b91c1c;
    transform: scale(1.02);
    box-shadow: 6px 6px 0px 0px #000000;
}

.submit-btn:active {
    transform: scale(0.98);
    box-shadow: 2px 2px 0px 0px #000000;
}

/* Štýly pre submit button v kontaktnom formulári */
.contact-form .btn.btn-primary {
    background: #dc2626;
    color: #fff;
    border: 4px solid #000;
    padding: 16px 32px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px 0px #000000;
    width: 100%;
}

.contact-form .btn.btn-primary:hover {
    background: #b91c1c;
    transform: scale(1.02);
    box-shadow: 6px 6px 0px 0px #000000;
}

.contact-form .btn.btn-primary:active {
    transform: scale(0.98);
    box-shadow: 2px 2px 0px 0px #000000;
}

/* Správy v kontaktnom formulári */
.form-success {
    background: #10b981;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 3px solid #059669;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px 0px #059669;
}

.form-error {
    background: #ef4444;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 3px solid #dc2626;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 4px 4px 0px 0px #dc2626;
}

/* Map container */
.map-container {
    margin-top: 4rem;
    text-align: center;
}

.map-container h3 {
    background: #000;
    color: #fff;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    transform: rotate(-1deg);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    border: 4px solid #000;
    box-shadow: 6px 6px 0px 0px #000000;
}

.map {
    border: 4px solid #000;
    box-shadow: 6px 6px 0px 0px #000000;
    transform: rotate(1deg);
    background: #fff;
    padding: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 5rem 0 5rem 0;
    background: #f5f5f5;
    position: relative;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border: 4px solid #000;
    box-shadow: 4px 4px 0px 0px #000000;
    cursor: pointer;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-img:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 8px 8px 0px 0px #000000;
    z-index: 2;
}

/* Lightbox Modal */
.lightbox-modal {
    display: flex;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease-in-out;
}
.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    border: none;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    transform: scale(0.9);
    transition: transform 0.4s ease-in-out;
}
.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 40px;
    right: 60px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #dc2626;
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #fff;
    border: none;
    font-size: 2.5rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    user-select: none;
}

.lightbox-prev {
    left: 20px;
    border-radius: 5px 0 0 5px;
}

.lightbox-next {
    right: 20px;
    border-radius: 0 5px 5px 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
    color: red;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content, .about-content, .hours-content, .contact-content, .rules-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-image {
        grid-row: 1;
        margin-bottom: 2rem;
    }
    .about-image {
        order: -1;
    }
    .hero-text {
        text-align: center;
    }
    .nav-container {
        padding: 0 2rem;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-card.popular {
        transform: scale(1.02);
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
    
    .logo:focus {
        outline: 2px solid #dc2626;
        outline-offset: 2px;
    }
    
    .logo:active {
        transform: scale(0.99);
    }
    
    .navbar {
        padding: 0.5rem 0.5rem !important;
        background: #000 !important;
        border-bottom: 2px solid #dc2626 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5) !important;
    }

    .hamburger {
        display: flex !important;
        z-index: 1000;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000 !important;
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        z-index: 999;
        animation: slideInDown 0.3s ease-out;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu.closing {
        animation: slideOutUp 0.3s ease-out forwards;
    }

    .nav-menu li {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.4s ease-out forwards;
    }

    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }

    .nav-menu li a {
        padding: 1rem 1.5rem;
        text-align: center;
        border: 2px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        background: transparent;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        border-color: #dc2626;
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    }

    .nav-menu li a.app-download {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        border-color: #dc2626;
        font-weight: bold;
        animation: pulse-glow 2s infinite;
    }

    .nav-menu li a.app-download:hover {
        background: linear-gradient(135deg, #b91c1c, #991b1b);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    }

    .hero-logo img {
        height: 120px;
    }

    .section-title .title-main .title-text {
        font-size: 2rem;
    }

    .about-content,
    .hours-content,
    .contact-content,
    .rules-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-icon {
        font-size: 1.3rem;
        margin-right: 0.8rem;
        min-width: 20px;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2.2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .logo:focus {
        outline: 2px solid #dc2626;
        outline-offset: 2px;
    }
    
    .logo:active {
        transform: scale(0.98);
    }

    .navbar {
        padding: 0.4rem 0.5rem !important;
        background: #000 !important;
    }

    .hamburger {
        display: flex !important;
    }

    .nav-menu {
        padding: 5rem 1rem 2rem;
        gap: 0.3rem;
        justify-content: center;
        align-items: center;
    }

    .nav-menu li a {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }

    .hero-logo img {
        height: 100px;
    }

    .section-title .title-main .title-text {
        font-size: 1.5rem;
        padding: 12px 20px;
    }

    .rules-text {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .rules-text h3 {
        font-size: 1.2rem;
    }

    .rules-text li {
        padding-left: 1.5rem;
        margin-bottom: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
        margin-right: 0.6rem;
        min-width: 18px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.about, .pricing, .hours, .contact, .rules {
    padding-top: 120px;
}

.fade-in, .zoom-in, .fade-in-left, .fade-in-right {
    will-change: opacity, transform;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 3rem 0 1rem 0;
    font-size: 1.05rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 20px;
}
.footer-logo {
    flex: 1 1 180px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.footer-logo img {
    height: 80px;
    width: auto;
}

/* Footer figures */
.footer-figures {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.footer-figure {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-figure:hover {
    opacity: 1;
}

.left-figure {
    margin-left: -20px;
}

.right-figure {
    margin-right: -20px;
}

/* Pricing figures */
.pricing-figures {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 2rem 0;
}

.pricing-figure {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.pricing-figure:hover {
    opacity: 1;
}

/* Hours figures */
.hours-figures {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 2rem 0;
}

.hours-figure {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.hours-figure:hover {
    opacity: 1;
}

/* Contact figures */
.contact-figures {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin: 2rem 0;
}

.contact-figure {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.contact-figure:hover {
    opacity: 1;
}
.footer-links {
    flex: 2 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #dc2626;
}
.footer-contact {
    flex: 2 1 220px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
    text-align: right;
}
.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 2rem;
    border-top: 1px solid #222;
    padding-top: 1rem;
}
.footer-credits {
    text-align: center;
    color: #888;
    font-size: 0.98rem;
    margin: 0.5rem 0 0.5rem 0;
}
.footer-credits a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-credits a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .footer {
        padding: 1.5rem 0 0.8rem 0 !important;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem !important;
        text-align: center;
    }
    .footer-contact {
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        margin-top: 1rem !important;
        padding-top: 0.5rem !important;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 0.5rem 0 0.3rem 0 !important;
    }
    .footer-container {
        gap: 0.3rem !important;
        padding: 0 20px;
    }
    .footer-links {
        gap: 0.3rem;
    }
    .footer-bottom {
        margin-top: 0.5rem !important;
        padding-top: 0.3rem !important;
    }
    .footer-credits {
        margin: 0.2rem 0 0.2rem 0 !important;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 0.3rem 0 0.2rem 0 !important;
    }
    .footer-container {
        gap: 0.2rem !important;
        padding: 0 25px;
    }
    .footer-links {
        gap: 0.2rem;
    }
    .footer-bottom {
        margin-top: 0.3rem !important;
        padding-top: 0.2rem !important;
    }
    .footer-credits {
        margin: 0.1rem 0 0.1rem 0 !important;
    }
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    border-top: 4px solid #dc2626;
    z-index: 9999;
    padding: 1.5rem;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideUpCookies 0.6s ease-out;
}

@keyframes slideUpCookies {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookies-text h4 {
    margin: 0 0 0.75rem 0;
    color: #dc2626;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookies-text h4 i {
    font-size: 1.4rem;
    animation: cookieBounce 2s ease-in-out infinite;
}

@keyframes cookieBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-3px) rotate(5deg); }
    75% { transform: translateY(-3px) rotate(-5deg); }
}

.cookies-text p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookies-buttons .btn {
    padding: 12px 24px;
    font-size: 1rem;
    min-width: 100px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookies-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cookies-buttons .btn:hover::before {
    left: 100%;
}

.cookies-buttons .btn-primary {
    background: #dc2626;
    border: 3px solid #dc2626;
    box-shadow: 4px 4px 0px 0px #b91c1c;
}

.cookies-buttons .btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px 0px #b91c1c;
}

.cookies-buttons .btn-outline {
    background: transparent;
    border: 3px solid #fff;
    color: #fff;
    box-shadow: 4px 4px 0px 0px #666;
}

.cookies-buttons .btn-outline:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px 0px #fff;
}

/* Responsive pre cookies banner */
@media (max-width: 768px) {
    .cookies-banner {
        padding: 1rem;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookies-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookies-buttons .btn {
        padding: 14px 28px;
        font-size: 1.1rem;
        min-width: 120px;
    }
    
    .cookies-text h4 {
        font-size: 1.1rem;
        justify-content: center;
    }
    
    .cookies-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cookies-banner {
        padding: 1rem 0.75rem;
    }
    
    .cookies-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .cookies-buttons .btn {
        width: 100%;
        min-width: auto;
    }
}

/* GDPR Consent */
.gdpr-consent {
    margin-bottom: 2rem;
    padding: 2rem 3rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    max-width: 100%;
    min-width: 100%;
}

.gdpr-consent:hover {
    border-color: #dc2626;
    background: #fff;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1.6;
    gap: 1.5rem;
    user-select: none;
    width: 100%;
    flex-wrap: nowrap;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 32px;
    height: 32px;
    border: 3px solid #dc2626;
    background: #fff;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: block;
    margin-top: 0.2rem;
}

.checkbox-label .gdpr-text {
    display: inline-block;
    vertical-align: top;
    margin-left: 0;
    padding-left: 0;
    text-indent: 0;
}

.checkbox-label:hover .checkmark {
    border-color: #b91c1c;
    background: #fef2f2;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #dc2626;
    border-color: #dc2626;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
}

.gdpr-link {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.gdpr-link:hover {
    color: #b91c1c;
    text-decoration: none;
}

.gdpr-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.gdpr-link:hover::after {
    width: 100%;
}

/* Responsive pre GDPR Consent */
@media (max-width: 768px) {
    .gdpr-consent {
        padding: 1.5rem 2rem;
        margin-bottom: 1.5rem;
    }
    
    .checkbox-label {
        font-size: 1.1rem;
        line-height: 1.5;
        gap: 1.25rem;
        flex-wrap: wrap;
    }
    
    .checkmark {
        width: 28px;
        height: 28px;
        margin-top: 0.1rem;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .gdpr-consent {
        padding: 1.25rem 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .checkbox-label {
        font-size: 1rem;
        line-height: 1.4;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .checkmark {
        width: 24px;
        height: 24px;
        margin-top: 0;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
        font-size: 16px;
    }
}

/* Mobilné menu animácie */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOutUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Návod na registráciu */
.registration-guide {
    margin-top: 4rem;
    text-align: center;
}

.guide-card {
    background: #fff;
    color: #000;
    border: 4px solid #fff;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
    transform: rotate(-1deg);
    box-shadow: 6px 6px 0px 0px #ffffff;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.guide-card h3 {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    margin-bottom: 1.5rem;
    transform: rotate(2deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.5rem;
    display: inline-block;
}

.guide-card h3 i {
    margin-right: 12px;
    color: #dc2626;
}

.guide-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Tutoriál kroky */
.tutorial-steps {
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.step-number {
    background: #dc2626;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 3px solid #000;
    box-shadow: 2px 2px 0px 0px #000000;
}

.step-content h4 {
    color: #dc2626;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
}

.guide-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.app-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.app-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 3px solid #000;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px 0px #ffffff;
}

.app-link:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px 0px #ffffff;
}

.app-link i {
    font-size: 1.2rem;
}

.iclub-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.iclub-link {
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%) !important;
    border: 3px solid #000 !important;
}

.iclub-link:hover {
    background: linear-gradient(135deg, #0056CC 0%, #4A42C4 100%) !important;
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px 0px #ffffff;
}

.app-link:first-child i {
    color: #fff;
}

.app-link:last-child i {
    color: #fff;
}

.guide-btn {
    padding: 16px 32px;
    border: 4px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 0px 0px #000000;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
}

.guide-btn.primary {
    background: #dc2626;
    color: #fff;
}

.guide-btn:hover {
    box-shadow: 6px 6px 0px 0px #000000;
    transform: scale(1.02);
}



/* Responsive pre návod na registráciu */
@media (max-width: 768px) {
    .guide-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .guide-card h3 {
        font-size: 1.3rem;
        padding: 10px 20px;
    }
    
    .tutorial-steps {
        max-width: 100%;
    }
    
    .step {
        margin-bottom: 1.25rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }
    
    .guide-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .guide-card {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .guide-card h3 {
        font-size: 1.2rem;
        padding: 8px 16px;
    }
    
    .guide-card p {
        font-size: 1rem;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .app-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .app-link {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .iclub-icon {
        width: 18px;
        height: 18px;
    }
    
    .guide-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Quote Section */
.quote-section {
    background: #f5f5f5;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.quote-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-section blockquote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
}

.quote-section blockquote::before {
    content: '"';
    font-size: 6rem;
    color: #dc2626;
    font-family: Georgia, serif;
    position: absolute;
    top: -2rem;
    left: -1rem;
    opacity: 0.3;
    line-height: 1;
}

.quote-section blockquote::after {
    content: '"';
    font-size: 6rem;
    color: #dc2626;
    font-family: Georgia, serif;
    position: absolute;
    bottom: -4rem;
    right: -1rem;
    opacity: 0.3;
    line-height: 1;
}

.quote-section blockquote p {
    font-size: 1.8rem;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.quote-section blockquote cite {
    font-size: 1.2rem;
    color: #dc2626;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.quote-section blockquote cite::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #dc2626;
    margin: 0 auto 1rem;
}

/* Responsive pre quote sekciu */
@media (max-width: 768px) {
    .quote-section {
        padding: 3rem 0;
    }
    
    .quote-section blockquote p {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
    
    .quote-section blockquote cite {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .quote-section blockquote::before,
    .quote-section blockquote::after {
        font-size: 4rem;
    }
    
    .quote-section blockquote::before {
        top: -1.5rem;
        left: 0;
    }
    
    .quote-section blockquote::after {
        bottom: -3rem;
        right: 0;
    }
}

@media (max-width: 480px) {
    .quote-section {
        padding: 2rem 0;
    }
    
    .quote-section blockquote p {
        font-size: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .quote-section blockquote cite {
        font-size: 0.9rem;
    }
    
    .quote-section blockquote::before,
    .quote-section blockquote::after {
        font-size: 3rem;
    }
    
    .quote-section blockquote::before {
        top: -1rem;
    }
    
    .quote-section blockquote::after {
        bottom: -2rem;
    }
}

/* Brand Logos */
.brand-logo {
    height: 35px;
    width: auto;
    margin: 0 12px 8px 0;
    vertical-align: middle;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid #dc2626;
    border-radius: 6px;
    padding: 6px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    border-color: #dc2626;
}

/* Responsive pre logá */
@media (max-width: 768px) {
    .brand-logo {
        height: 35px;
        margin: 0 6px 6px 0;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 30px;
        margin: 0 4px 4px 0;
        padding: 2px;
    }
}

/* Responzívne štýly pre logá */
@media (max-width: 768px) {
    .about-features .brand-logo {
        height: 28px;
        margin: 0 8px 6px 0;
        padding: 4px;
    }
    
    .brand-logos-container {
        padding: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .about-features .brand-logo:hover {
        transform: scale(1.05) translateY(-1px);
    }
}

@media (max-width: 480px) {
    .about-features .brand-logo {
        height: 24px;
        margin: 0 6px 4px 0;
        padding: 3px;
        border-radius: 6px;
    }
    
    .brand-logos-container {
        padding: 0.5rem;
        margin-top: 0.5rem;
        border-radius: 8px;
    }
    
    .about-features .brand-logo:hover {
        transform: scale(1.03);
    }
}

/* Špeciálne efekty pre rôzne typy logov */
.about-features .brand-logo[src*=".svg"] {
    filter: grayscale(100%) brightness(0.8) contrast(1.2);
}

.about-features .brand-logo[src*=".svg"]:hover {
    filter: grayscale(0%) brightness(1.1) contrast(1.1);
}

/* Loading stav pre logá */
.about-features .brand-logo:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Lietajúce sociálne ikonky */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: auto;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    border: 3px solid #dc2626;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}



.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
    border-color: #fff;
}

.social-icon i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    color: #fff;
}

/* Farebné Font Awesome ikonky */
.social-icon.email i {
    color: #ea4335;
}

.social-icon.maps i {
    color: #34a853;
}

/* Obrázky ikoniek pre sociálne siete */
.social-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 30px;
    max-height: 30px;
}

.social-icon:hover .social-icon-img {
    transform: scale(1.2);
}

.social-icon:hover i {
    transform: scale(1.2);
}



.social-icon.email::before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.7));
}

.social-icon.maps:hover {
    border-color: #fff;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.6);
}

.social-icon.maps::before {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.9), rgba(185, 28, 28, 0.7));
}

/* Animácia tep srdca pre ikonky */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    20% {
        transform: scale(1.05);
    }
    40% {
        transform: scale(1);
    }
    60% {
        transform: scale(1.05);
    }
    80% {
        transform: scale(1);
    }
}

.social-icon {
    animation: heartbeat 4s ease-in-out infinite;
}

.social-icon:nth-child(1) { animation-delay: 0s; }
.social-icon:nth-child(2) { animation-delay: 0.8s; }
.social-icon:nth-child(3) { animation-delay: 1.6s; }
.social-icon:nth-child(4) { animation-delay: 2.4s; }
.social-icon:nth-child(5) { animation-delay: 3.2s; }

/* Responzívne nastavenia pre lietajúce ikonky */
@media (max-width: 768px) {
    .floating-social {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
    }
}

@media (max-width: 480px) {
    .floating-social {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        box-shadow: 0 3px 12px rgba(220, 38, 38, 0.5);
    }
}

/* Špeciálny efekt pre aktívne ikonky */
.social-icon:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.8);
}

/* Špeciálne štýly pre text "Profesionálne stroje" */
.about-features li:has(.brand-logos-container) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}



/* Text "Profesionálne stroje" */
.about-features li:has(.brand-logos-container) {
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.about-features li:has(.brand-logos-container)::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.3), transparent);
    margin-top: 0.5rem;
}

/* Vylepšený kontajner pre logá */
.brand-logos-container {
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(220, 38, 38, 0.4);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.brand-logos-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
}

.brand-logos-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.6), transparent);
}

/* CSS Custom Properties pre optimalizáciu */
:root {
    --animation-duration: 0.3s;
    --animation-timing: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Optimalizácie pre výkon */
* {
    /* Optimalizácia pre GPU akceleráciu */
    will-change: auto;
}

/* Optimalizované animácie */
.fade-in, .zoom-in, .fade-in-left, .fade-in-right {
    will-change: transform, opacity;
    transform: translateZ(0); /* GPU akcelerácia */
}

/* Optimalizované hover efekty */
.service-card:hover, .price-card:hover {
    will-change: transform;
    transform: translateZ(0) scale(1.02);
}

/* Optimalizácia pre mobilné zariadenia */
@media (max-width: 768px) {
    :root {
        --animation-duration: 0.2s;
    }
    
    /* Zníženie animácií na mobile */
    .fade-in, .zoom-in, .fade-in-left, .fade-in-right {
        animation-duration: var(--animation-duration);
    }
    
    /* Optimalizácia touch events */
    .service-card, .price-card, .nav-link {
        touch-action: manipulation;
    }
    
    /* Zníženie box-shadow na mobile pre lepší výkon */
    .navbar, .service-card, .price-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Optimalizácia pre pomalé zariadenia */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Optimalizácia pre vysoké DPI displeje */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img, .brand-logos-container img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Optimalizácia pre tlač */
@media print {
    .floating-social, .navbar, .hero-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Optimalizácia pre dark mode */
@media (prefers-color-scheme: dark) {
    :root {
        --animation-duration: 0.25s;
    }
}

/* Optimalizácia pre focus accessibility */
.nav-link:focus, .service-card:focus, .price-card:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Optimalizácia pre screen readers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Optimalizácia pre lazy loading obrázkov */
img.lazy {
    opacity: 0;
    transition: opacity var(--transition-normal);
}

img.lazy.loaded {
    opacity: 1;
}

/* Optimalizácia pre smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Pre fixed navbar */
}

/* Optimalizácia pre obsah */
.content-optimized {
    contain: layout style paint;
}

/* Optimalizácia pre animácie */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-normal) var(--animation-timing);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optimalizácia pre performance monitoring */
.performance-marker {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
    display: none;
}

/* Optimalizácia pre critical CSS */
.critical {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Optimalizácia pre font loading */
.font-loading {
    font-display: swap;
}

/* Optimalizácia pre resource hints */
.resource-hint {
    display: none;
}

/* Optimalizácia pre service worker */
.service-worker-ready {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #dc2626;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(100px);
    transition: all var(--transition-normal);
}

.service-worker-ready.show {
    opacity: 1;
    transform: translateY(0);
}

/* News Section Styles */
.news-placeholder {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
    border-radius: 8px;
}

.news-section {
    padding: 4rem 0;
    background: #fff;
    color: #000;
}

/* No News Section */
.no-news-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.no-news-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 20px;
    background: white;
    border: 3px solid #000;
    border-radius: 0;
    box-shadow: 6px 6px 0px 0px #dc2626;
}

.no-news-icon {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 2rem;
}

.no-news-content h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.no-news-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.no-news-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-news-actions .btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid;
}

.no-news-actions .btn-primary {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.no-news-actions .btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
}

.no-news-actions .btn-secondary {
    background: transparent;
    color: #000;
    border-color: #000;
}

.no-news-actions .btn-secondary:hover {
    background: #000;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .no-news-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-news-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* No Hours Message */
.no-hours-message {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    margin: 1rem 0;
}

.no-hours-message p {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Founder Section Styles */
.founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-gallery {
    position: relative;
}

.main-photo {
    position: relative;
    margin-bottom: 1rem;
}

.main-photo img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0;
    box-shadow: 6px 6px 0px 0px #dc2626;
    border: 3px solid #000;
    object-fit: cover;
    aspect-ratio: 3/4;
    transition: opacity 0.3s ease;
}

.photo-thumbnails {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 0px 0px #ccc;
}

.thumbnail:hover {
    border-color: #dc2626;
    box-shadow: 3px 3px 0px 0px #dc2626;
    transform: translateY(-2px);
}

.thumbnail.active {
    border-color: #dc2626;
    box-shadow: 3px 3px 0px 0px #dc2626;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.5rem 1.5rem;
    border: 2px solid #000;
    border-radius: 0;
    box-shadow: 3px 3px 0px 0px #000;
}

.badge-text {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-info h2 {
    font-family: 'Rubik Burned', cursive;
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px #000;
}

.founder-title {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 600;
}

.founder-achievements,
.founder-credentials {
    margin-bottom: 2rem;
}

.founder-achievements h3,
.founder-credentials h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    border-bottom: 3px solid #dc2626;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.achievements-list,
.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.achievements-list li,
.credentials-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #000;
    border: 2px solid #fff;
    border-radius: 0;
    box-shadow: 3px 3px 0px 0px #dc2626;
    transition: all 0.3s ease;
}

.achievements-list li:hover,
.credentials-list li:hover {
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px 0px #dc2626;
}

.achievements-list li i,
.credentials-list li i {
    color: #dc2626;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.achievements-list li span,
.credentials-list li span {
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
}

.founder-philosophy {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border: 3px solid #000;
    border-radius: 0;
    box-shadow: 6px 6px 0px 0px #dc2626;
    position: relative;
}

.founder-philosophy::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #dc2626;
    font-family: serif;
    line-height: 1;
}

.founder-philosophy blockquote {
    margin: 0;
    padding: 0;
}

.founder-philosophy blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.founder-philosophy blockquote cite {
    font-weight: 600;
    color: #dc2626;
    font-style: normal;
}

.founder-experience {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border: 3px solid #000;
    border-radius: 0;
    box-shadow: 6px 6px 0px 0px #000;
}

.founder-experience h3 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: white;
}

.founder-experience p {
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-info h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .founder-title {
        text-align: center;
    }
    
    .achievements-list li,
    .credentials-list li {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .founder-philosophy {
        padding: 1.5rem;
    }
    
    .founder-philosophy::before {
        font-size: 3rem;
        top: -5px;
        left: 15px;
    }
    
    .photo-thumbnails {
        gap: 0.3rem;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 8rem 0 4rem 0;
    text-align: center;
    border-bottom: 4px solid #fff;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    filter: drop-shadow(8px 8px 0px #000000);
    font-family: 'Rubik Burned', cursive;
}

.page-hero .hero-subtitle {
    font-size: 1.25rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive Design for Page Hero */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem 0;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.125rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 5rem 0 2rem 0;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.news-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0px 0px #000000;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0px 0px #000000;
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px 0px #000000;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 1rem;
}

.news-meta time {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: bold;
}

.news-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.3;
}

.news-excerpt {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-read-more {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0px 0px #000000;
}

.news-read-more:hover {
    background: #fff;
    color: #000;
    border-color: #000;
    box-shadow: 5px 5px 0px 0px #000000;
}

.news-view-all {
    text-align: center;
    margin-top: 3rem;
}

.news-view-all .btn {
    background: #dc2626;
    color: #fff;
    border-color: #000;
    box-shadow: 4px 4px 0px 0px #000000;
    font-size: 1.125rem;
    padding: 1rem 2rem;
}

.news-view-all .btn:hover {
    box-shadow: 6px 6px 0px 0px #000000;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.modal-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    margin: 2% auto;
    padding: 2.5rem;
    border: 4px solid #000;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 8px 8px 0px 0px #dc2626;
    overflow-y: auto;
    overflow-x: hidden;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #666;
    float: right;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.1);
}

.close:hover {
    color: #fff;
    background: #dc2626;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

.modal-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid #dc2626;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
    margin: -2.5rem -2.5rem 2rem -2.5rem;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    border-radius: 12px 12px 0 0;
    color: white;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.modal-category {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.modal-date {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

#modalTitle {
    color: #fff;
    margin-bottom: 0;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

#modalContent,
.modal-content-text {
    color: #2d3748;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-content-text {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.modal-body {
    margin-top: 1rem;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 60vh;
}

.modal-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
    text-align: center;
}

.modal-close-btn {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: 3px solid #000;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 4px 4px 0px 0px #000;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close-btn:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3), 6px 6px 0px 0px #000;
}

.modal-close-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 2px 2px 0px 0px #000;
}

/* Responsive modal styles */
@media (max-width: 768px) {
    .modal-content {
        margin: 1% auto;
        padding: 1.5rem;
        width: 98%;
        max-width: none;
        max-height: 98vh;
    }
    
    .modal-header {
        margin: -1.5rem -1.5rem 1.5rem -1.5rem;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    #modalTitle {
        font-size: 1.4rem;
    }
    
    .modal-content-text {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .modal-body {
        max-height: 75vh;
        overflow-x: hidden;
    }
    
    .modal-footer {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .modal-close-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 0.5% auto;
        padding: 1rem;
        width: 99%;
        max-height: 99vh;
    }
    
    .modal-header {
        margin: -1rem -1rem 1rem -1rem;
        padding: 1rem 1rem 0.8rem 1rem;
    }
    
    #modalTitle {
        font-size: 1.2rem;
    }
    
    .modal-content-text {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .modal-body {
        max-height: 80vh;
        overflow-x: hidden;
    }
    
    .close {
        top: 0.5rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 2rem;
    }
    
    .modal-footer {
        margin-top: 1rem;
        padding-top: 0.8rem;
    }
    
    .modal-close-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

.modal-image {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-image img {
    border: 3px solid #dc2626;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 4px 4px 0px 0px #dc2626;
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.modal-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 6px 6px 0px 0px #dc2626;
}

/* Enhanced News Styles - Roland Fitness Theme */
.news-section {
    padding: 4rem 0;
    background: #fff;
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(220, 38, 38, 0.02) 49%, rgba(220, 38, 38, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 0, 0, 0.01) 49%, rgba(0, 0, 0, 0.01) 51%, transparent 52%);
    background-size: 40px 40px, 60px 60px;
    pointer-events: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.news-card {
    background: #fff;
    border: 4px solid #000;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 12px 12px 0px 0px #dc2626;
}

.news-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(-1deg);
}

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-bottom: 4px solid #000;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: #fff;
    padding: 0.5rem 1rem;
    border: 2px solid #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 2px 2px 0px 0px #000;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.news-placeholder {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 3rem;
    border: 2px dashed #dc2626;
}

.news-content {
    padding: 1.5rem;
    background: #fff;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #000;
}

.news-meta time,
.reading-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reading-time {
    color: #dc2626;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rubik Burned', cursive;
}

.news-excerpt {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-read-more {
    background: #dc2626;
    color: #fff;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 4px 4px 0px 0px #000;
}

.news-read-more:hover {
    background: #fff;
    color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px 0px #000;
}

.news-share {
    width: 40px;
    height: 40px;
    border: 2px solid #000;
    background: #fff;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 0px 0px #000;
}

.news-share:hover {
    background: #dc2626;
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 4px 4px 0px 0px #000;
}


/* Responsive Design for Enhanced News */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .news-card {
        margin: 0 1rem;
    }
    
    .news-image {
        height: 180px;
    }
    
    .news-content {
        padding: 1rem;
    }
    
    .news-title {
        font-size: 1.125rem;
    }
    
    .news-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 2rem 0;
    }
    
    .news-card {
        margin: 0 0.5rem;
    }
    
    .news-category {
        font-size: 0.625rem;
        padding: 0.375rem 0.75rem;
    }
    
    .news-read-more {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
    }
    
    .news-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-read-more {
        width: 100%;
        justify-content: center;
    }
}
