@font-face {
    font-family: 'Sponge Bob Ru Uk En';
    src: url('fonts/bob.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Blob Spongey Lowercase';
    src: url('fonts/lowercase_bob.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#content {
    overflow: hidden;
}

:root {
    --accent-blue: #1F3CA3;
    --primary-blue: #2954A3;
    --accent-purple: #C961DE;
    --accent-yellow: #FDF353;
    --light-blue: #9DF4FF;
    --medium-blue: #81D2FF;
    --dark-blue: #0F103F;
    --light-purple: #7375D5;
    --light-orange: #FFC8A3;
    --text-dark: #2B2B2B;
}

body {
    font-family: 'Blob Spongey Lowercase', sans-serif;
    background: white;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Header & Navigation */
header {
    background: var(--primary-blue);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span:first-child {
    color: white;
}

.logo span:last-child {
    color: var(--accent-yellow);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-yellow);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: calc(100vh + 50px);
    background: url(img/bg/flower.jpg) lightgray 50% / cover no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 40px;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Sponge Bob Ru Uk En', sans-serif;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #0F103F;
    font-size: 75px;
    font-style: normal;
    font-weight: 400;
    line-height: 143.203%; /* 107.402px */
}

.hero-title span:first-child {
    color: white;
}

.hero-title span:last-child {
    color: var(--accent-yellow);
}

.hero-subtitle {
    color: white;
    text-align: center;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(15, 16, 63, 0.63);
    font-family: "Blob Spongey Lowercase", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 32.5px */
}

.hero-buttons {
    padding-top: 5vh;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 150px;
    text-align: center;
}

.btn-outline {
    color: white;
    border-radius: 30px;
    border: 1.53px solid rgba(255, 255, 255, 0.60);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(11.575666427612305px);
}

.btn-gradient {
    background: linear-gradient(100deg, var(--accent-purple) 0%, var(--primary-blue) 100%);
    color: white;
    border-radius: 30px;
    border: 1.53px solid rgba(255, 255, 255, 0.60);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.flowers {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: url(img/bg/flowers.png) repeat;
    background-size: 30vh;
}

.flowers-full {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(img/bg/flowers.png) 30% repeat;
    opacity: 0.5;
    z-index: -1;
    background-size: 30vh;
}

.bikini-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: url(img/bg-prop/bikinibottom.png) 50% / cover repeat;
    z-index: -1;
}

.sponge {
    position: absolute;
    bottom: 40px;
    left: calc(50% - 150px);
    width: 172px;
    height: 217px;
    background: url(img/props/spongebob.png) 100% / cover no-repeat;
}

.coral {
    position: absolute;
    bottom: 270px;
    left: calc(50% + 70px);
    width: 69px;
    height: 69px;
    background: url(img/props/coral.png) 50% / cover repeat;
    z-index: -1;
}

.bubbles {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url(img/bg/bubbles.png) 50% / cover repeat;
    background-size: 80%;
    opacity: 0.2;
    z-index: -1;
}

.sign {
    position: absolute;
    top: 0;
    left: calc(50% - 365px / 2);
    width: 365px;
    height: 259px;
    background: url(img/bg-prop/sign-text.png) 100% / cover;
}

.customers {
    position: absolute;
    top: 150px;
    left: calc(50% - 370px / 2);
    width: 390px;
    height: 964px;
    background: url(img/props/customers.png) 50% / cover repeat;
}

/* Decorative elements */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 15%;
    animation-delay: 1s;
}

.bubble-3 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation-delay: 2s;
}

/* About Section */
.about {
    width: 100%;
    background: var(--light-purple);
    position: relative;
    overflow: hidden;
    color: white;
    border-radius: 50px;
    border: 1px solid black;

    transform: translateY(-50px);
    margin-bottom: -50px;

    background: var(--light-purple);
}

.about-container {
    padding: 20px 20px;
}

.section-title {
    text-align: center;
    font-size: 45px;
    margin-bottom: 12px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.dark-blue {
    color: var(--dark-blue);
}

.light-blue {
    color: var(--primary-blue);
}

.accent-blue {
    color: var(--accent-blue);
}

.dark-grey {
    color: var(--text-dark);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto 40px auto;
    text-align: center;
    font-size: 24px;
    line-height: 100%;
    padding: 8px 0px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #0F103F;
}

.about-content span.highlight {
    color: var(--accent-yellow);
}

.about-image {
    width: 335px;
    height: 265px;
    border-radius: 50px;
    border: 1px solid #0F103F;
    background: url(img/bg/patrik-home.png) 100% / cover no-repeat;
    margin: 20px auto;
}

/* Stats Section */
.stats {
    width: 100%;
    background: var(--light-blue);
    position: relative;
    overflow: hidden;
    transform: translateY(-50px);
    margin-bottom: -50px;
    z-index: -1;
}

.stats-wrapper {
    padding: 120px 20px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-card {
    position: relative;
    background: url('img/bg/card.png') no-repeat center center;
    background-size: cover;
    padding: 24px 29px;
    min-height: 200px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid #13154D;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--dark-blue);
    font-weight: bold;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.stat-description {
    color: var(--primary-blue);
    text-align: left;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 25px;
    line-height: 100%; /* 25px */
    max-width: 160px;
}

.card-3 .stat-description {
    text-align: right;
}

.stat-content {
    max-width: 200px;
}

.card-1 .stat-content,
.card-2 .stat-content,
.card-4 .stat-content {
    margin-right: auto;
    text-align: left;
}

.card-3 .stat-content {
    position: absolute;
    top: 11px;
    right: 24px;
    text-align: right;
}

.card-3 .stat-image {
    order: 3;
}

.stat-image {
    position: absolute;
}

/* Cards 1, 2, 4 - Image bottom right */
.card-1 .stat-image,
.card-2 .stat-image,
.card-4 .stat-image {
    bottom: -30px;
    right: 0;
}

/* Card 3 - Image bottom left */
.card-3 .stat-image {
    bottom: -30px;
    left: 0px;
}

.stat-image img {
    max-height: 190px;
    max-width: 250px;
    object-fit: contain;
}

/* Advantages Section */
.advantages {
    width: 100%;
    height: 1150px;
    padding: 80px 20px;
    background: url(img/bg/planks.png) 100% / cover repeat;
    background-size: 20vh;
    position: relative;
    overflow: hidden;
    transform: translateY(-50px);
    margin-bottom: -50px;
    border-radius: 50px 50px 0 0;
    border: 1px solid #000;
    border-bottom: none;
}

.advantages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
    overflow: hidden;
}

.advantage-item:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 50px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.advantage-text {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: bold;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Contacts Section */
.contacts {
    width: 100%;
    background: var(--medium-blue);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    transform: translateY(-50px);
    margin-bottom: -50px;
    border: 1px solid #000;
    border-radius: 50px 50px 0 0;
    border-bottom: none;
}

.contacts-wrapper {
    padding: 70px 20px;
}

.contacts-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.contact-item {
    background: white;
    max-width: 274px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    width: 100%;

    border-radius: 30px;
    border: 1px solid var(--dark-blue);
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    min-width: 48px;
    min-height: 48px;
    border-radius: 50%;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: white;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.25);
}

.patric-icon {
    background: url(img/icons/patric-icon.png) 100% / cover no-repeat;
}

.squidward-icon {
    background: url(img/icons/squidward-icon.png) 100% / cover no-repeat;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 1.1rem;
    color: var(--dark-blue);
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.contact-value {
    font-size: 1.2rem;
    color: var(--primary-blue);
    font-weight: bold;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-logo span:first-child {
    color: white;
}

.footer-logo span:last-child {
    color: var(--accent-yellow);
}

.footer-text {
    margin-bottom: 20px;
    opacity: 0.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-purple);
    transform: translateY(-5px);
}

.aqua-creature {
    position: absolute;
    z-index: 1;
    animation: float-creature 15s ease-in-out infinite;
}

/* Hero section creatures */
.hero-creature-1 {
    width: 95px;
    top: 3%;
    left: calc(50% - 170px);
    animation-delay: 0s;
}

.hero-creature-2 {
    width: 110px;
    top: 10%;
    left: calc(50% + 60px);
    animation-delay: 2s;
}

.hero-creature-3 {
    width: 89px;
    top: calc(30% - 50px);
    left: calc(50% - 170px);
    animation-delay: 4s;
}

.hero-creature-4 {
    width: 90px;
    bottom: 120px;
    left: calc(50% + 100px);
    animation-delay: 6s;
}

.hero-creature-5 {
    width: 60px;
    top: calc(30% - 10px);
    left: calc(50% + 10px);
    animation-delay: 8s;
    opacity: 0.8;
}

/* Stats section creatures */
.stats-creature-1 {
    width: 88px;
    top: 80px;
    left: calc(50% + 20px);
    animation-delay: 1s;
}

.stats-creature-2 {
    width: 70px;
    top: 140px;
    left: calc(50% - 190px);
    animation-delay: 3s;
    z-index: 0;
}

.stats-creature-3 {
    width: 80px;
    bottom: 130px;
    left: calc(50% - 30px);
    animation-delay: 5s;
}

/* Advantages section creatures */
.advantages-creature-1 {
    width: 65px;
    top: 35px;
    left: calc(50% + 50px);
    animation-delay: 2s;
}

.advantages-creature-2 {
    width: 75px;
    top: 230px;
    left: calc(50% - 220px);
    animation-delay: 4s;
}

.advantages-creature-3 {
    width: 55px;
    bottom: 300px;
    left: calc(50% + 0px);
    animation-delay: 6s;
}

/* Contacts section creatures */
.contacts-creature-1 {
    width: 134px;
    top: 0px;
    left: calc(50% - 200px);
    animation-delay: 1s;
    transition: 1s;
}

.contacts-creature-2 {
    width: 60px;
    top: 20px;
    left: calc(50% + 60px);
    animation-delay: 3s;
}

.contacts-creature-3 {
    width: 85px;
    top: 160px;
    left: calc(50% + 100px);
    animation-delay: 5s;
    z-index: 0;
}

.contacts-creature-4 {
    width: 70px;
    top: 300px;
    left: calc(50% - 200px);
    animation-delay: 7s;
}

.contacts-creature-5 {
    width: 100px;
    bottom: 170px;
    left: calc(50% + 80px);
    animation-delay: 6s;
}
.garry {
    position: absolute;
}
.contacts-creature-6 {
    width: 55px;
    bottom: 0px;
    left: calc(50% + 70px);
    animation-delay: 0s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(10px) rotate(5deg);
    }
}

@keyframes sway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    25% {
        transform: translateX(-10px) rotate(-5deg);
    }
    75% {
        transform: translateX(10px) rotate(5deg);
    }
}

@keyframes float-creature {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translateY(-5px) rotate(0deg) scale(1);
    }
    75% {
        transform: translateY(-10px) rotate(-5deg) scale(0.95);
    }
}

/* Language Toggle */
.language-toggle {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    z-index: 10;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1.53px solid rgba(255, 255, 255, 0.60);
    border-radius: 30px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(11.575666427612305px);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
    color: white;
    font-family: 'Blob Spongey Lowercase', sans-serif;
    font-size: 16px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.lang-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    font-size: 18px;
    line-height: 1;
}

.lang-text {
    font-size: 14px;
    font-weight: bold;
}

/* Media Queries */
@media (min-width: 576px) {
    .btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 992px) {
    .jellyfish-1, .jellyfish-2 {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 2vh 20px 40px;
    }

    .language-toggle {
        margin-top: 20px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .lang-flag {
        font-size: 16px;
    }

    .lang-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .stats-container, .advantages-container {
        grid-template-columns: 1fr;
    }

    .contact-items {
        grid-template-columns: 1fr;
    }
}