body {
    background-color: #e0fbff;
    font-family: 'Raleway', sans-serif;
}

.welcome {
    text-align: center;
    margin: auto;
    padding: 20px;

}

.welcome h2 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 8px; /* место за линијата */
}

.welcome h2::after {
    content: "";
    position: absolute;
    width: 100%; /* целосна ширина на текстот */
    height: 3px;
    background: #00bfff;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    animation: underline-grow 2s ease forwards;
}

@keyframes underline-grow {
    from {
        width: 0;
        left: 0;
    }
    to {
        width: 100%;
        left: 0;
    }
}


.navbar {
    gap: 100px;
    background-image: linear-gradient(to right, #ffd1da, #ff77ac);
    display: flex;
    justify-content: space-evenly;
    padding: 100px;
    align-items: center;
}


.navbar a {
    text-decoration: none;
    color: #181853;
    font-weight: bold;
    position: relative;
    transition: transform 0.3s ease, color 0.3s ease;
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #181853;
    transform: scaleX(0);
}

.navbar a:hover {
    color: antiquewhite;
    transform: scale(1.1);
}

.navbar a:hover::after {
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

footer {
    background-image: linear-gradient(to right, #ffd1da, #ff77ac);
    display: flex;
    justify-content: center;
    font-size: 15px;
    color: #ffd1da;
    padding: 7px;
    border-top: 3px dotted #181853;
    text-decoration: none;
}

footer a {
    text-decoration: none;
    color: #ffd1da;
}

footer a:hover {
    color: #afeff8;
    transform: scale(1.1);

}

.exhibition-link {
    color: #b11a6d;
    text-decoration: underline;
}

.exhibition-link:hover {
    color: #f6d9e5;
}

.me {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: default;
    margin: 70px;
}

.attention {
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    border-radius: 15px;
    padding: 20px;
    color: #181853;
    margin: auto;
    width: 1000px;
    text-align: center;
}

.attention h3 {
    color: deeppink;
    font-weight: bold;
    text-align: center;
}

.merchimgs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 50px;
}

.merchimgs img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    margin-top: 40px;
    height: 400px;
    width: auto;
    box-shadow: 0 0 10px rgb(13, 13, 97);
}

.merchimgs a:nth-child(even) {
    margin-top: 50px;
}

.merchDetails, .merchText div {
    display: block;
    justify-content: left;
    text-align: left;
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    border-radius: 15px;
    padding: 30px;
    margin: 10px;
    color: #181853
}

.insta {
    color: #b11a6d;
    text-decoration: underline;
}

.insta:hover {
    color: #f6d9e5;
}

.email {
    color: #b11a6d;
    text-decoration: underline;
}

.email:hover {
    color: #f6d9e5;

}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.gallery img {
    width: 150px;
    height: 270px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.gallery a:hover img {
    transform: scale(1.07);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.gallery a {
    opacity: 0;
    transform: translateY(20px);
    animation: showImage 0.5s ease forwards;
}

@keyframes showImage {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.gallery a:nth-child(1) { animation-delay: 0.05s; }
.gallery a:nth-child(2) { animation-delay: 0.1s; }
.gallery a:nth-child(3) { animation-delay: 0.15s; }
.gallery a:nth-child(4) { animation-delay: 0.2s; }
.gallery a:nth-child(5) { animation-delay: 0.25s; }
.gallery a:nth-child(6) { animation-delay: 0.3s; }
.gallery a:nth-child(7) { animation-delay: 0.35s; }
.gallery a:nth-child(8) { animation-delay: 0.4s; }
.gallery a:nth-child(9) { animation-delay: 0.45s; }
.gallery a:nth-child(10) { animation-delay: 0.5s; }

.gallery a:nth-child(11) { animation-delay: 0.55s; }
.gallery a:nth-child(12) { animation-delay: 0.6s; }
.gallery a:nth-child(13) { animation-delay: 0.65s; }
.gallery a:nth-child(14) { animation-delay: 0.7s; }
.gallery a:nth-child(15) { animation-delay: 0.75s; }
.gallery a:nth-child(16) { animation-delay: 0.8s; }
.gallery a:nth-child(17) { animation-delay: 0.85s; }
.gallery a:nth-child(18) { animation-delay: 0.9s; }
.gallery a:nth-child(19) { animation-delay: 0.95s; }
.gallery a:nth-child(20) { animation-delay: 1s; }

.gallery a:nth-child(21) { animation-delay: 1.05s; }
.gallery a:nth-child(22) { animation-delay: 1.1s; }
.gallery a:nth-child(23) { animation-delay: 1.15s; }
.gallery a:nth-child(24) { animation-delay: 1.2s; }
.gallery a:nth-child(25) { animation-delay: 1.25s; }
.gallery a:nth-child(26) { animation-delay: 1.3s; }
.gallery a:nth-child(27) { animation-delay: 1.35s; }
.gallery a:nth-child(28) { animation-delay: 1.4s; }
.gallery a:nth-child(29) { animation-delay: 1.45s; }
.gallery a:nth-child(30) { animation-delay: 1.5s; }

.gallery a:nth-child(31) { animation-delay: 1.55s; }
.gallery a:nth-child(32) { animation-delay: 1.6s; }
.gallery a:nth-child(33) { animation-delay: 1.65s; }
.gallery a:nth-child(34) { animation-delay: 1.7s; }
.gallery a:nth-child(35) { animation-delay: 1.75s; }
.gallery a:nth-child(36) { animation-delay: 1.8s; }
.gallery a:nth-child(37) { animation-delay: 1.85s; }
.gallery a:nth-child(38) { animation-delay: 1.9s; }
.gallery a:nth-child(39) { animation-delay: 1.95s; }
.gallery a:nth-child(40) { animation-delay: 2s; }

.gallery a:nth-child(41) { animation-delay: 2.05s; }
.gallery a:nth-child(42) { animation-delay: 2.1s; }
.gallery a:nth-child(43) { animation-delay: 2.15s; }
.gallery a:nth-child(44) { animation-delay: 2.2s; }
.gallery a:nth-child(45) { animation-delay: 2.25s; }
.gallery a:nth-child(46) { animation-delay: 2.3s; }
.gallery a:nth-child(47) { animation-delay: 2.35s; }
.gallery a:nth-child(48) { animation-delay: 2.4s; }
.gallery a:nth-child(49) { animation-delay: 2.45s; }
.gallery a:nth-child(50) { animation-delay: 2.5s; }

.exhImg {
    display: inline-block;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: default;
    margin: 70px;
}

.exhImg img {
    width: 300px;
    height: auto;

}

.text {
    width: 935px;

    img {
        height: 400px;
        width: 450px;
    }
}


body > div.me > div > p:nth-child(1) {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    padding: 30px;
    margin: -50px;
    color: #181853;
    gap: 30px;
    padding-bottom: 20px;

}

body > div.me > div > p:nth-child(1) img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transform: rotate(5deg);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.85);
    filter: brightness(1.1) contrast(1.05);
    animation: float 6s ease-in-out infinite;
    margin-bottom: 20px;
    margin-right: 20px;


}

body > div.me > div > p:nth-child(1)::after {
    content: '';
    flex: 1;
}

.section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 20px;
    color: #181853;
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    max-width: 1000px;
    flex-wrap: wrap;
}

.project-image {
    width: 280px;
    height: auto;
    border-radius: 10px;
    transform: rotate(-5deg);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.85);
    filter: brightness(1.1) contrast(1.05);
    animation: float 6s ease-in-out infinite;
    flex-shrink: 0;
    margin-bottom: 20px;
    margin-left: 20px;
}

.project-text {
    max-width: 600px;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
}


.exhibition-link {
    color: #b11a6d;
    text-decoration: underline;
}

.exhibition-link:hover {
    color: #f6d9e5;
}


.imgInterviews1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
    width: 1000px;
    margin: auto;
    gap: 40px;

}

.imgInterviews1 img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    height: 400px;
    width: auto;
    box-shadow: 0 0 10px rgb(13, 13, 97);
    border-radius: 10px;
}

.interviews {
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: -85px;
}

.interviews h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1d3557;
    font-style: italic;
}

.flip-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.flip-card {
    background-color: transparent;
    width: 210px;
    height: 100px;
    perspective: 1000px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flip-card:focus-within,
.flip-card:active {
    transform: scale(1.1);
    box-shadow: 10px 20px 35px rgba(255, 105, 180, 0.4);
    z-index: 10;
}

.flip-front, .flip-back {
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 15px;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    flex-direction: column;
}


.flip-front {
    background-color: #ffffff;
    color: #1d3557;
    transform: rotateY(0deg);
}

.flip-back {
    background-color: #1d3557;
    color: #ffffff;
    transform: rotateY(180deg);
}

.flip-card:hover .flip-front {
    transform: rotateY(180deg);
}

.flip-card:hover .flip-back {
    transform: rotateY(0deg);
}

.flip-back a {
    margin-top: -10px;
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.flip-back a:hover {
    color: #ff6fbd;
    text-decoration: underline;
}

.flip-back a:active {
    color: hotpink;
    text-decoration: underline;
}

.exhibitionText1 {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #181853;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.exhibitionText2 {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #181853;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.exhibitionText3 {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background: linear-gradient(to bottom, #e0fbff, #82c1f4);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #181853;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.imgInterviews2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
    width: 1200px;
    margin: auto;
    gap: 40px;

}

.imgInterviews2 img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    height: 400px;
    width: auto;
    box-shadow: 0 0 10px rgb(13, 13, 97);
    border-radius: 10px;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

.hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180%;
    background: url("images/like_a_dream.png") no-repeat center;
    background-size: cover;
    filter: blur(3px);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blur-card {
    background-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    padding: 0px;
    padding-left: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: -60px;
    width: 1000px;
    margin: auto;

}

.two-column {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.left-side {
    flex: 1;
    text-align: left;
}

.right-side {
    flex: 2;
    text-align: left;

}

.name {
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: #0d0d61;
    text-decoration: none;

}

.title {
    font-size: 24px;
    color: #0d0d61;
    margin-top: 10px;
}

.welcome-text {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f6d9e5;
    text-shadow: 0 0 5px #ff7baf,
    0 0 10px #ff7baf,
    0 0 20px #ff7baf,
    0 0 40px #ff7baf;
    width: 600px;
}

.subtext {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
}

.quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #0d0d61;
}

.author {
    display: block;
    margin-top: 10px;
    text-align: right;
    color: #0d0d61;
    padding-right: 40px;
}

.content {
    display: flex;
    justify-content: center;
}

.mainImg img {
    border-radius: 15px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.contact-info {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #222;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    font-size: 18px;
    margin: 12px 0;
    color: #333;
}

.contact-info a {
    color: #00bfff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0077aa;
    text-decoration: underline;
}

