<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #111; /* crna za naglaske */
    --secondary: #2979ff; /* plava */
    --background: #111;
    --foreground: #fff;
    --gray: #222;
    --font-main: 'Segoe UI', 'Arial', sans-serif;
    --white: #fff;
    --light-gray: #f7f7f7;
    --contrast-bg: #181c24;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* HEADER STYLING */
.header {
	/*
    background: linear-gradient(90deg, #16181f 60%, #23273a 100%);*/
	background: white;
    box-shadow: 0 2px 18px rgba(41,121,255,0.10);
    border-bottom: 2px solid var(--secondary);
    position: sticky;
    top: 0;
    z-index: 100;
	height: 100px;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.3rem 5vw 1.3rem 5vw;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&amp;display=swap');

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.gym-logo img{
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo h1 {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(90deg, #222 60%, #2979ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    display: flex;
    align-items: baseline;
    gap: 0.15em;
    text-shadow: 0 2px 12px #2979ff22;
	color: black;
}
.logo .site-dotpro {
    font-size: 1.1em;
    font-weight: 900;
    color: #2979ff;
    background: none;
    -webkit-text-fill-color: #2979ff;
    margin-left: 0.1em;
    letter-spacing: 0.01em;
}
.logo .site-main {
    letter-spacing: 0.08em;
}

@media (max-width: 700px) {
    .logo h1 {
        font-size: 1.15rem;
    }
    .gym-logo {
        width: 38px;
        height: 38px;
    }
}
}

/* HEADER CONTACT INFO */
.header-contact {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    font-weight: 500;
    font-size: 1.08rem;
    text-decoration: none;
    background: #23273a;
    padding: 0.5rem 1.1rem 0.5rem 0.7rem;
    border-radius: 2em;
    box-shadow: 0 2px 12px #2979ff22;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    border: 1.5px solid #2979ff33;
    position: relative;
}
.contact-link img {
    width: 22px;
    height: 22px;
    display: inline-block;
    vertical-align: middle;
}
.contact-link:hover, .contact-link:focus {
    background: #2979ff;
    color: #fff;
    box-shadow: 0 4px 24px #2979ff55;
    outline: none;
}
.contact-link:hover .icon, .contact-link:focus .icon {
    filter: brightness(2);
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 3vw;
    }
    .header-contact {
        margin-top: 1rem;
        gap: 1rem;
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .header-inner {
        padding: 1rem 1vw;
    }
    .header-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100%;
    }
    .logo h1 {
        font-size: 1.1rem;
    }
}

/* HERO */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;   /* Add this line */
    padding: 1rem 5vw 3rem 5vw;
    background: linear-gradient(90deg, var(--background) 60%, #181818 100%);
    min-height: 60vh;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    text-shadow: 0 2px 12px #2979ff22;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #e0e0e0;
}
.cta-btn {
    background: var(--secondary);
    color: #fff;
    border: 1px;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 2rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover {
    background: #1151b8;
    transform: scale(1.05);
}

.hero-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 250px;
	padding-top: 2rem;
}
.hero-image img {
    max-height: 550px;
    border-radius: 1.5rem;
    box-shadow: 0 6px 32px rgba(0,0,0,0.3);
    object-fit: cover;
}

/* BIJELA POZADINA ZA GLAVNI SADRÅ½AJ */
.section-white {
    background: var(--white);
    color: var(--background);
}

/* KONTRASTNA POZADINA ZA PORTFOLIO */
.section-contrast {
    background: var(--contrast-bg);
    color: var(--white);
}

/* About */
.about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    padding: 4rem 5vw;
}
.about-image {
    flex: 1 1 250px;
    display: flex;
    justify-content: center;
}
.about-image img {
    width: 220px;
    max-width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.about-text {
    flex: 2 1 350px;
}
.about-text h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-text ul {
    list-style: none;
    padding: 0;
}
.about-text li {
    margin-bottom: 0.7rem;
    font-size: 1.1rem;
    position: relative;
    padding-left: 1.5em;
}
.about-text li::before {
    content: "âœ“";
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Portfolio */
.portfolio {
    padding: 4rem 5vw;
    text-align: center;
    position: relative;
}
.portfolio h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 8px #2979ff22;
}
.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.portfolio-item {
    width: 220px;
    height: 320px;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: 0 4px 20px rgba(41,121,255,0.10);
    background: #23273a;
    border: 3px solid #fff2;
    transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}
.portfolio-item:hover, .portfolio-item:focus {
    transform: scale(1.04);
    box-shadow: 0 8px 32px #2979ff55, 0 2px 18px #2979ff33;
}
.portfolio-item:hover img {
    transform: scale(1.07);
}

/* Pricing */
.pricing {
    padding: 4rem 5vw;
    text-align: center;
}
.pricing h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.pricing-card {
    display: inline-block;
    background: var(--light-gray);
    border-radius: 1.5rem;
    box-shadow: 0 2px 16px rgba(41,121,255,0.10);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    min-width: 300px;
    max-width: 350px;
}
.price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
}
.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--secondary);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.pricing-card li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #222;
}

/* Contact */
.contact {
    padding: 4rem 5vw;
    text-align: center;
}
.contact h3 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem auto;
}
form input, form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    font-size: 1rem;
    background: #fff;
    color: #222;
    resize: none;
}
form textarea {
    min-height: 100px;
}
form button {
    align-self: center;
}
.contact-info {
    margin-top: 1.5rem;
    color: #333;
    font-size: 1.1rem;
}
.contact-info strong {
    color: var(--secondary);
}

footer {
    padding: 1.2rem 0;
    background: #181818;
    text-align: center;
    color: #888;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .hero, .about {
        flex-direction: column;
        text-align: center;
    }
    .hero-content, .about-text {
        max-width: 100%;
    }
    .hero-image, .about-image {
        margin-bottom: 2rem;
    }
    .portfolio-gallery {
        gap: 1rem;
    }
    .portfolio-item {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 600px) {
    .hero, .about, .portfolio, .pricing, .contact {
        padding: 2rem 2vw;
    }
    .pricing-card {
        padding: 1.5rem 1rem 1rem 1rem;
        min-width: 220px;
    }
    .portfolio-item {
        width: 120px;
        height: 120px;
    }
}
</pre></body></html>