@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

h1, h2, h3 {
    font-family: 'Caveat', cursive;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h2 {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.nav-link:hover {
    color: #e2e8f0;
}

.nav-link.book-now {
    background: #C2D833;
    color: #1a5f7a;
    font-family: 'Salting', cursive, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    -webkit-text-stroke: 1.2px #1a5f7a;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 1px #fff;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}

.nav-link.book-now:hover {
    background: #b1c72a;
    color: #134a5f;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 180px; /* Dodajemo padding da se slika pomeri ispod headera */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: #C2D833;
    color: #1a5f7a;
    font-family: 'Salting', cursive, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    -webkit-text-stroke: 1.2px #1a5f7a;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 1px #fff;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
    background: #b1c72a;
    color: #134a5f;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: linear-gradient(120deg, #e0f2fe 0%, #fdf6e3 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
}

.about-wave {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -2px;
    z-index: 2;
    padding-bottom: 0;
}

.about-wave svg {
    display: block;
    width: 100%;
    height: 120px;
    min-height: 80px;
}

.about-wave-badge {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -2px;
    z-index: 2;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-wave-svg {
    display: block;
    width: 100%;
    height: 140px;
    min-height: 80px;
}

.about-wave-circle {
    position: absolute;
    left: 50%;
    bottom: 38px;
    transform: translateX(-50%);
    width: 110px;
    height: 110px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(56,189,248,0.13), 0 2px 12px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #38bdf8;
    z-index: 10;
}

.about-wave-circle-text {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #38bdf8;
    letter-spacing: 1px;
    text-align: center;
    user-select: none;
}

.about-wave-svg-badge {
    width: 100%;
    line-height: 0;
    margin-top: -2px;
    z-index: 2;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: none;
}

.about-svg-badge {
    display: block;
    width: 100%;
    height: 200px;
    min-height: 120px;
    max-width: 1440px;
}

@media (max-width: 700px) {
    .about-svg-badge {
        height: 120px;
    }
}

@media (max-width: 700px) {
    .about-wave-svg {
        height: 80px;
    }
    .about-wave-circle {
        width: 70px;
        height: 70px;
        bottom: 18px;
        border-width: 2.5px;
    }
    .about-wave-circle-text {
        font-size: 1.1rem;
    }
}

/* Classes Section */
.classes {
    background: linear-gradient(120deg, #e0f2fe 0%, #fdf6e3 100%);
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.class-card {
    background: #fff;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(26, 95, 122, 0.10);
    border: 2px solid #e0f2fe;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    text-align: center;
}
.class-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(26, 95, 122, 0.13);
    border-color: #60a5fa;
}

.class-card h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-weight: 600;
}

.class-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.class-card ul {
    list-style: none;
}

.class-card li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.class-card li:before {
    content: "✔";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.class-board-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem auto;
    background: #f8fafc;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(26, 95, 122, 0.10);
    border: 2px solid #e0f2fe;
    padding: 8px;
}

.class-board-svg svg {
    width: 56px;
    height: 56px;
    display: block;
}

.class-waves {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.1rem;
    color: #38bdf8;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 2px 6px rgba(56,189,248,0.13));
    user-select: none;
}

@media (max-width: 600px) {
    .class-card {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    .class-board-svg {
        width: 48px;
        height: 48px;
        padding: 4px;
    }
    .class-board-svg svg {
        width: 36px;
        height: 36px;
    }
}

/* Tag and Follow Section */
.tag-follow {
    background: #1a5f7a;
    color: white;
    text-align: center;
}

.tag-follow h2 {
    color: white;
    margin-bottom: 2rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 400px;
    margin: 0 auto;
}

.social-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.follow-button {
    display: inline-block;
    background: white;
    color: #1a5f7a;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.follow-button:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #1a5f7a;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author h4 {
    color: #1a5f7a;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(26, 95, 122, 0.10);
    border: none;
    background: #e0f2fe;
    display: block;
}

@media (max-width: 600px) {
    .testimonial-img {
        height: 140px;
        border-radius: 12px 12px 0 0;
    }
}

/* FAQ Section */
.faq {
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f1f5f9;
}

.faq-question h3 {
    font-family: inherit;
    color: #1a5f7a;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #1a5f7a;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* Location Section */
.location {
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.location-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
}

.location-info p {
    margin-bottom: 1rem;
    color: #64748b;
}

.map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    background: #1a5f7a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active .nav-link {
        color: #1a5f7a;
        text-shadow: none;
    }

    .nav-menu.active .nav-link.book-now {
        background: #C2D833;
        color: #1a5f7a;
        font-family: 'Salting', cursive, sans-serif;
        font-weight: 900;
        font-size: 1.2rem;
        -webkit-text-stroke: 1.2px #1a5f7a;
        text-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 1px #fff;
        padding: 0.7rem 2.5rem;
        border-radius: 30px;
        margin-top: 1rem;
        display: inline-block;
        letter-spacing: 1px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        transition: background 0.2s, color 0.2s;
    }

    .nav-menu.active .nav-brand h2 {
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu.active .bar {
        background: white;
        box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .hero {
        height: 100vh;
        padding: 0;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }

    .class-card {
        padding: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .class-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.polaroid-gallery {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.polaroid {
    background: #fff;
    padding: 0.7rem 0.7rem 2.1rem 0.7rem;
    border-radius: 10px;
    box-shadow: 0 12px 36px rgba(26, 95, 122, 0.22), 0 2px 12px rgba(0,0,0,0.10);
    width: 160px;
    position: relative;
    transition: transform 0.2s;
    z-index: 1;
    border: 2.5px solid #e5e7eb;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.polaroid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px 6px 3px 3px;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
.polaroid-caption {
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: #64748b;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 0.7rem;
    left: 0;
}
.polaroid-1 { transform: rotate(-20deg) translateY(-200px); z-index: 2; }
.polaroid-2 { transform: rotate(5deg) translateY(-170px); z-index: 3; }
.polaroid-3 { transform: rotate(3deg) translateY(-180px); z-index: 1; }
.polaroid:hover { transform: scale(1.07) rotate(-1deg); z-index: 10; }

.polaroid-left, .polaroid-right {
    flex-direction: column;
    gap: 1.2rem;
    max-height: 350px;
    justify-content: center;
}

@media (max-width: 900px) {
    .tag-follow-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .polaroid-left, .polaroid-right {
        flex-direction: row;
        margin: 0;
        gap: 0.7rem;
        max-height: none;
    }
    .polaroid {
        width: 100px;
        padding: 0.4rem 0.4rem 1.1rem 0.4rem;
    }
    .polaroid img {
        height: 60px;
    }
    .polaroid-caption {
        font-size: 0.8rem;
        bottom: 0.4rem;
    }
} 

.tag-follow-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
}

.polaroid-left, .polaroid-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.polaroid-right {
    margin-left: 1rem;
}

.polaroid-left {
    margin-right: 1rem;
}

.tag-follow-center {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}

@media (max-width: 900px) {
    .tag-follow-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    .polaroid-left, .polaroid-right {
        flex-direction: row;
        margin: 0;
        gap: 0.7rem;
    }
    .tag-follow-center {
        min-width: 0;
    }
} 

.polaroid-moodboard {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin: 2.5rem 0 1.5rem 0;
    position: relative;
    min-height: 180px;
}
.polaroid-moodboard .polaroid {
    position: absolute;
    width: 160px;
    left: 50%;
    margin-left: -80px;
    opacity: 0.98;
}
.polaroid-1 {
    transform: rotate(-10deg) translate(-170px, 18px);
    z-index: 2;
}
.polaroid-2 {
    transform: rotate(7deg) translate(0px, -18px);
    z-index: 3;
}
.polaroid-3 {
    transform: rotate(-4deg) translate(170px, 28px);
    z-index: 1;
}

@media (max-width: 900px) {
    .polaroid-moodboard {
        min-height: 110px;
    }
    .polaroid-moodboard .polaroid {
        width: 100px;
        margin-left: -50px;
    }
    .polaroid-1 {
        transform: rotate(-8deg) translate(-90px, 8px);
    }
    .polaroid-2 {
        transform: rotate(5deg) translate(0px, -8px);
    }
    .polaroid-3 {
        transform: rotate(-3deg) translate(90px, 12px);
    }
}

@media (max-width: 600px) {
    .polaroid-moodboard {
        min-height: 0;
        flex-direction: column;
        align-items: center;
        gap: 0.7rem;
    }
    .polaroid-moodboard .polaroid {
        position: static;
        margin-left: 0;
        width: 90vw;
        max-width: 320px;
        transform: none !important;
        opacity: 1;
    }
} 

.tag-follow-flex.razbacane {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: nowrap;
}

.polaroid-left, .polaroid-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
    min-width: 120px;
}

.polaroid-1 {
    transform: rotate(-10deg) translateY(12px);
    z-index: 2;
}
.polaroid-2 {
    transform: rotate(8deg) translateY(-18px);
    z-index: 3;
}
.polaroid-3 {
    transform: rotate(-6deg) translateY(22px);
    z-index: 1;
}

.tag-follow-center {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}

@media (max-width: 900px) {
    .tag-follow-flex.razbacane {
        flex-direction: column;
        gap: 1.5rem;
    }
    .polaroid-left, .polaroid-right {
        flex-direction: row;
        margin: 0;
        gap: 0.7rem;
        min-width: 0;
    }
    .polaroid {
        width: 100px;
        padding: 0.4rem 0.4rem 1.1rem 0.4rem;
    }
    .polaroid img {
        height: 60px;
    }
    .polaroid-caption {
        font-size: 0.8rem;
        bottom: 0.4rem;
    }
    .polaroid-1, .polaroid-2, .polaroid-3 {
        transform: none;
    }
} 

.tag-follow-flex.samo-levo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: nowrap;
}

.polaroid-left {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-end;
    min-width: 120px;
}

.polaroid-1 {
    transform: rotate(-10deg) translateY(-150px);
    z-index: 2;
}
.polaroid-2 {
    transform: rotate(8deg) translateY(-120px);
    z-index: 3;
}
.polaroid-3 {
    transform: rotate(-6deg) translateY(-130px);
    z-index: 1;
}

.tag-follow-center {
    flex: 1 1 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 260px;
}

@media (max-width: 900px) {
    .tag-follow-flex.samo-levo {
        flex-direction: column;
        gap: 1.5rem;
    }
    .polaroid-left {
        flex-direction: row;
        margin: 0;
        gap: 0.7rem;
        min-width: 0;
        align-items: center;
    }
    .polaroid {
        width: 100px;
        padding: 0.4rem 0.4rem 1.1rem 0.4rem;
    }
    .polaroid img {
        height: 60px;
    }
    .polaroid-caption {
        font-size: 0.8rem;
        bottom: 0.4rem;
    }
    .polaroid-1, .polaroid-2, .polaroid-3 {
        transform: none;
    }
} 

.about-wave-img {
    width: 100%;
    line-height: 0;
    margin-top: 32px;
    z-index: 2;
    padding-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background: none;
}

.waves-separator-img {
    width: 100%;
    max-width: 1440px;
    height: auto;
    display: block;
} 

.polaroid-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-end;
    min-width: 180px;
    position: relative;
}

.polaroid {
    background: #fff;
    padding: 1rem 1rem 2.2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(26, 95, 122, 0.22), 0 2px 12px rgba(0,0,0,0.10);
    width: 200px;
    position: absolute;
    transition: transform 0.2s;
    z-index: 1;
    border: 2.5px solid #e5e7eb;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.polaroid-1 {
    top: 0;
    left: 0;
    transform: rotate(-10deg) translateY(12px);
    z-index: 3;
}
.polaroid-2 {
    top: 60px;
    left: 40px;
    transform: rotate(8deg) translateY(-18px);
    z-index: 2;
}
.polaroid-3 {
    top: 120px;
    left: 80px;
    transform: rotate(-6deg) translateY(22px);
    z-index: 1;
}

.polaroid:hover { transform: scale(1.07) rotate(-1deg); z-index: 10; }

@media (max-width: 900px) {
    .polaroid-left {
        flex-direction: row;
        margin: 0;
        gap: 0.7rem;
        min-width: 0;
        align-items: center;
        position: static;
    }
    .polaroid {
        width: 110px;
        padding: 0.5rem 0.5rem 1.1rem 0.5rem;
        position: static;
        margin-bottom: 0;
        z-index: 1;
        transform: none !important;
    }
    .polaroid img {
        height: 60px;
    }
    .polaroid-caption {
        font-size: 0.8rem;
        bottom: 0.4rem;
    }
} 

.polaroid {
    /* povećan okvir */
    padding: 1.2rem 1.2rem 2.5rem 1.2rem;
    border-radius: 14px;
    box-shadow: 0 16px 44px rgba(26, 95, 122, 0.22), 0 2px 12px rgba(0,0,0,0.10);
    width: 190px;
    border: 4px solid #e5e7eb;
}
.polaroid img {
    height: 150px;
    border-radius: 10px 10px 5px 5px;
}
.polaroid-caption {
    font-size: 1.2rem;
    bottom: 1.1rem;
}
/* Manje preklapanje i više podignute slike */
.polaroid-1 {
    transform: rotate(-7deg) translateY(0px) translateX(-30px);
    z-index: 2;
}
.polaroid-2 {
    transform: rotate(5deg) translateY(-20px) translateX(0px);
    z-index: 3;
}
.polaroid-3 {
    transform: rotate(3deg) translateY(10px) translateX(30px);
    z-index: 1;
}
@media (max-width: 900px) {
    .polaroid {
        width: 120px;
        padding: 0.7rem 0.7rem 1.3rem 0.7rem;
    }
    .polaroid img {
        height: 80px;
    }
    .polaroid-caption {
        font-size: 0.9rem;
        bottom: 0.5rem;
    }
    .polaroid-1, .polaroid-2, .polaroid-3 {
        transform: none;
    }
} 

@font-face {
    font-family: 'Salting';
    src: url('Salting Free.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.tag-follow-collage {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}
.tag-follow-collage-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: 1;
}
.tag-follow-collage-img {
    flex: 1 1 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.1) brightness(0.7) contrast(1.1);
}
.img1 { background-image: url('hero6.jpeg'); }
.img2 { background-image: url('hero2.jpeg'); }
.img3 { background-image: url('hero5.jpeg'); }

.tag-follow-collage-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(59,92,107,0.65);
    z-index: 2;
}

.tag-follow-collage-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 380px;
    margin-top: -40px;
    margin-left: auto;
    margin-right: 14vw; /* probaj 14vw, 16vw, 18vw dok ne bude savršeno */
    padding-right: 0;
}
.tag-follow-collage-title {
    font-family: 'Salting', cursive, sans-serif;
    color: #fff;
    font-size: 2.7rem;
    letter-spacing: 1.5px;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
    text-align: right;
    width: auto;
}
.tag-follow-collage-box {
    background: rgba(59,92,107,0.92);
    border-radius: 22px;
    padding: 2.2rem 2.5rem 1.5rem 2.5rem;
    box-shadow: 0 4px 24px rgba(26,95,122,0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 90vw;
    margin-top: 0px;
    margin-right: 100px;
    align-self: flex-end;
}
.tag-follow-collage-btn {
    display: inline-block;
    background: #C2D833;
    color: #1a5f7a;
    font-family: 'Salting', cursive, sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    -webkit-text-stroke: 1.2px #1a5f7a;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 1px #fff;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    margin-top: 0.2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.tag-follow-collage-btn:hover {
    background: #b1c72a;
    color: #134a5f;
}

.tag-follow-collage-handle {
    color: #fff;
    font-family: 'Caveat', cursive;
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    text-align: center;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

@media (max-width: 900px) {
    .tag-follow-collage, .tag-follow-collage-content {
        min-height: 220px;
    }
    .tag-follow-collage-content {
        align-items: center;
        padding-right: 0;
        min-height: 220px;
        margin-top: -40px;
    }
    .tag-follow-collage-title {
        text-align: center;
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    .tag-follow-collage-box {
        padding: 1.2rem 1rem 1rem 1rem;
        min-width: 0;
        margin-top: 0;
    }
}
/* Mobile Layout Styles */
.mobile-tag-follow-section {
    display: none;
}

@media (max-width: 719px) {
    .tag-follow-collage-bg,
    .tag-follow-collage-content {
        display: none;
    }
    
    .mobile-tag-follow-section {
        display: block;
        background: linear-gradient(120deg, #e0f2fe 0%, #fdf6e3 100%);
        padding: 2rem 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }
    
    .mobile-tag-follow-title {
        font-family: 'Salting', cursive, sans-serif;
        color: #1a5f7a;
        font-size: 1.5rem;
        letter-spacing: 1.5px;
        text-align: center;
        margin-bottom: 2rem;
        padding: 0 2rem;
    }
    
    .mobile-carousel {
        position: relative;
        width: 100%;
        height: 250px;
        margin-bottom: 2rem;
    }
    
    .carousel-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        filter: grayscale(0.1) brightness(0.7) contrast(1.1);
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }
    
    .carousel-slide.active {
        opacity: 1;
    }
    
    .carousel-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 3;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .indicator.active {
        background: #C2D833;
    }
    
    .mobile-tag-follow-bottom {
        text-align: center;
        padding: 0 2rem;
    }
    
    .mobile-tag-follow-handle {
        color: #1a5f7a;
        font-family: 'Caveat', cursive;
        font-size: 1.7rem;
        font-weight: 600;
        margin-bottom: 1rem;
        text-align: center;
        letter-spacing: 1px;
    }
    
    .mobile-tag-follow-btn {
        display: inline-block;
        background: #C2D833;
        color: #1a5f7a;
        font-family: 'Salting', cursive, sans-serif;
        font-weight: 900;
        font-size: 1.2rem;
        -webkit-text-stroke: 1.2px #1a5f7a;
        text-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 1px #fff;
        padding: 0.7rem 2.5rem;
        border-radius: 30px;
        text-decoration: none;
        letter-spacing: 1px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.10);
        transition: background 0.2s, color 0.2s;
    }
    
    .mobile-tag-follow-btn:hover {
        background: #b1c72a;
        color: #134a5f;
    }
} 