@import url('https://fonts.googleapis.com/css2?family=Lato&family=Poppins:wght@300;700&display=swap');
@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --primary-purple: #812AE9;
    --light-purple: #C89DFB;
    --accent-purple: #6A0ED6;
    --dark-purple: #483455;
    --hover-purple: #a15dee;
    --glow-purple: #7C29E2;
    
    /* Gradients */
    --gradient-light: linear-gradient(45deg, rgba(170, 255, 242) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 50%, rgb(217, 197, 241) 100%);
    --gradient-light-alt: linear-gradient(135deg, rgba(170, 255, 242) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 50%, rgba(217, 197, 241) 100%);
    
    /* Shadows */
    --shadow-glow: 0 0 40px var(--primary-purple);
    --shadow-glow-hover: 0 0 50px 7px var(--primary-purple);
    --shadow-soft: 0 0 20px #1020AF1A;
    --shadow-medium: 0 0 100px #802ae93b;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --font-tertiary: 'Lato', sans-serif;
    
    /* Spacing */
    --border-radius-round: 1000px;
    --border-radius-small: 10px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========== RESET & BASE ========== */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
    background-color: black;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
	font-size: 10px;
	font-family: var(--font-primary);
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
    color: white;
}

/* ========== COOKIE BANNER ========== */
#cookie-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: rgba(19, 1, 20, 0.805);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 16px;
    width: 100%;
    position: fixed;
    z-index: 100;
    padding: 10px;
    bottom: 0;
    transition: all 1s ease;
    transform: translateY(100%);
    opacity: 0;
}

#cookie-banner.active {
    transform: translateY(0);
    opacity: 1;
    display: flex;
    transition: all 1s ease;
}

#cookie-banner p {
    margin: 10px;
}

#cookie-banner a {
    text-decoration: none;
    padding: 15px;
    font-size: 15px;
    color: var(--hover-purple);
}

#cookie-banner .buttons-cookie {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#cookie-banner .button-cookie,
#cookie-banner .button-cookie-decline,
#cookie-banner .button-cookie-settings {
    width: 80%;
    margin: 10px 10px 10px 0;
    max-width: 350px;
}

#cookie-banner .button-cookie-settings {
    background-color: transparent;
    border: solid 1px white;
    color: white;
    padding: 8px;
    font-size: 1.5rem;
    border-radius: var(--border-radius-round);
    text-align: center;
    font-weight: lighter;
    transition: var(--transition-slow) background-color;
    cursor: pointer;
}

#cookie-banner .button-cookie-settings:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#cookie-settings-modal.active {
    display: flex;
    opacity: 1;
}

.cookie-settings-content {
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.15), rgba(200, 157, 251, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(200, 157, 251, 0.3);
    padding: 35px;
    border-radius: 25px;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    color: white;
    box-shadow: 0 8px 32px rgba(124, 41, 226, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cookie-settings-content h2 {
    color: white;
    font-size: 2rem;
    margin-top: 0;
    background: linear-gradient(135deg, #fff, #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(129, 42, 233, 0.3));
}

.cookie-settings-content h3 {
    font-size: 1.15rem;
    margin: 0 0 8px 0;
    color: #fff;
    font-weight: 600;
}

.cookie-settings-content p,
.cookie-settings-content small {
    margin: 5px 0;
    color: #ddd;
    line-height: 1.6;
}

.cookie-category {
    background: rgba(129, 42, 233, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    margin: 15px 0;
    border-radius: 15px;
    border: 1px solid rgba(200, 157, 251, 0.25);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: rgba(129, 42, 233, 0.2);
    border-color: rgba(200, 157, 251, 0.4);
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
    border-radius: 34px;
    border: 1px solid rgba(200, 157, 251, 0.3);
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-switch input:checked + .cookie-slider {
    background: linear-gradient(135deg, var(--primary-purple), var(--hover-purple));
    border-color: var(--hover-purple);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-switch input:disabled + .cookie-slider {
    background: linear-gradient(135deg, var(--primary-purple), var(--hover-purple));
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-settings-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cookie-settings-buttons button {
    flex: 1;
    min-width: 180px;
    border: none;
    font-family: inherit;
    font-size: 1.3rem;
    padding: 12px 20px;
    border-radius: var(--border-radius-round);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-settings-buttons .button-cookie {
    background-color: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 15px rgba(129, 42, 233, 0.4);
}

.cookie-settings-buttons .button-cookie:hover {
    background-color: white;
    color: var(--primary-purple);
    box-shadow: 0 6px 20px rgba(129, 42, 233, 0.6);
    transform: translateY(-2px);
}

.cookie-settings-buttons .button-cookie-decline {
    background-color: transparent;
    border: 1px solid rgba(200, 157, 251, 0.5);
    color: white;
}

.cookie-settings-buttons .button-cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(200, 157, 251, 0.8);
}



/* ========== UTILITY CLASSES ========== */
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

hr.rounded {
    border: 1px solid var(--accent-purple);
    border-radius: 5px;
    min-width: 50px;
    max-width: 50px;
    margin-bottom: 20px;
}

/* ========== BUTTON STYLES ========== */
.btn-primary,
#hero .contact,
#about .col-right .photos,
#contact .back-to-main,
#cookie-banner .button-cookie,
#movie .movie .iframe-container .cookies-youtube .button-cookie,
#movie .movie .iframe-container .cookies-youtube-dzieci .button-cookie {
    background-color: var(--primary-purple);
    color: white;
    padding: 8px;
    font-size: 1.5rem;
    border-radius: var(--border-radius-round);
    text-align: center;
    box-shadow: var(--shadow-glow);
    font-weight: lighter;
    transition: var(--transition-slow) background-color, var(--transition-fast) box-shadow;
    cursor: pointer;
}

.btn-primary:hover,
#hero .contact:hover,
#about .col-right .photos:hover,
#contact .back-to-main:hover,
#cookie-banner .button-cookie:hover,
#movie .movie .iframe-container .cookies-youtube .button-cookie:hover,
#movie .movie .iframe-container .cookies-youtube-dzieci .button-cookie:hover {
    box-shadow: var(--shadow-glow-hover);
    background-color: white;
    color: var(--primary-purple);
}

.btn-secondary,
#hero .offer,
#cookie-banner .button-cookie-decline {
    background-color: transparent;
    border: solid 1px var(--primary-purple);
    color: white;
    padding: 8px;
    font-size: 1.5rem;
    border-radius: var(--border-radius-round);
    text-align: center;
    font-weight: lighter;
    transition: var(--transition-slow) background-color, var(--transition-fast) box-shadow;
    cursor: pointer;
}

.btn-secondary:hover,
#hero .contact.offer:hover,
#cookie-banner .button-cookie-decline:hover {
    background-color: white;
    color: var(--primary-purple);
}

#contact .email .button {
    display: flex;
    margin: 30px 50px;
    padding: 8px;
    background-color: var(--primary-purple);
    box-shadow: var(--shadow-glow);
    border-radius: 40px;
    color: #FFFFFF;
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow) background-color, var(--transition-fast) box-shadow;
    min-width: 165px;
    border: none;
    cursor: pointer;
}

#contact .email .button:hover {
    background-color: white;
    color: var(--accent-purple);
    box-shadow: 0px 0px 5px var(--accent-purple);
}

/* ========== HEADER SECTION ========== */
#header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: auto;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: all 0.4s ease;
}

#header.scrolled {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(10, 5, 15, 0.5);
    border-bottom: 1px solid rgba(129, 42, 233, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 2px 15px rgba(129, 42, 233, 0.15);
}

#header span {
    color: white;
}

#header .logo {
    display: none;
}

#header .header {
    min-height: 8vh;
    background-color: transparent;
    transition: var(--transition-medium) background-color;
}

#header .nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    max-width: 1300px;
    padding: 0 20px;
}

#header .nav-bar h1 {
    font-size: 2rem;
    color: whitesmoke;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(129, 42, 233, 0.3);
    transition: all 0.3s ease;
}

#header .nav-bar .logo h1 a {
    color: whitesmoke;
    transition: var(--transition-medium) text-shadow;
    position: relative;
}

#header .nav-bar .logo h1 a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    transition: width 0.3s ease;
}

#header .nav-bar .logo h1:hover a::before {
    width: 100%;
}

#header .nav-bar .logo h1:hover {
    text-shadow: 0 0 20px var(--hover-purple), 0 0 40px var(--primary-purple), 0 2px 4px rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transform: translateY(-2px);
}
#header .nav-list {
    display: flex;
}

#header .nav-list ul {
    list-style: none;
    position: absolute;
    background-color: rgb(19, 1, 20);
    width: 100vw; 
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    overflow-x: hidden;
    transition: var(--transition-slow) left;
}

#header .nav-list ul.active {
    left: 0;
}

#header .nav-list ul a {
    font-size: 2.5rem;
    font-family: var(--font-tertiary);
    font-weight: 500;
    letter-spacing: 0.1rem;
    text-decoration: none;
    color: whitesmoke;
    padding: 20px;
    display: block;
}

#header .nav-list ul a::after {
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 255, 0.021);
    font-size: 13rem;
    letter-spacing: 50px;
    z-index: -1;
    transition: var(--transition-medium) letter-spacing;
}

#header .nav-list ul li:hover a::after {
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
    color: rgba(245, 245, 245, 0.062);
}
#header .phone {
    display: none;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

#header .phone img {
    margin: 10px;
}

#header .phone h2 {
    font-family: var(--font-secondary);
    font-weight: lighter;
    font-size: 2rem;
    color: rgb(245, 245, 245);
}

#header .nav-list ul li a {
    transition: var(--transition-medium) color;
}

#header .nav-list ul li:hover a {
    color: var(--hover-purple);
}

#header .hamburger,
#header .hamburger2 {
    z-index: 100;
    height: 60px;
    width: 60px;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.8);
    margin-top: 5px;
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.15), rgba(200, 157, 251, 0.1));
    box-shadow: 0 4px 15px rgba(129, 42, 233, 0.2), inset 0 2px 8px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .hamburger:hover,
#header .hamburger2:hover {
    border-color: var(--light-purple);
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.3), rgba(200, 157, 251, 0.2));
    box-shadow: 0 0 35px rgba(129, 42, 233, 0.6), inset 0 2px 12px rgba(255, 255, 255, 0.15), 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.88) translateY(-2px);
}

#header .hamburger:active,
#header .hamburger2:active {
    transform: scale(0.75);
    box-shadow: 0 0 25px rgba(129, 42, 233, 0.8), inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

#header .hamburger2::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
    animation: hamburger_puls 1.5s ease infinite;
}

#header .hamburger .bar {
    height: 2px;
    width: 30px;
    position: relative;
    background-color: whitesmoke;
    z-index: -1;
}

#header .hamburger .bar::after,
#header .hamburger .bar::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: whitesmoke;
    transition: var(--transition-medium);
    transition-property: top, bottom;
}

#header .hamburger .bar::after {
    top: 8px;
}

#header .hamburger .bar::before {
    bottom: 8px;
}

#header .hamburger.active .bar::before {
    bottom: 0;
}

#header .hamburger.active .bar::after {
    top: 0;
}

/* ========== HERO SECTION ========== */
#hero {
    box-shadow: var(--dark-purple) 0 0 0.5rem;
    background-image: url(./img/background-hero-mobile.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}

#hero::after {
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
}

#hero .hero {
    color: white;
    align-items: flex-end;
    font-family: var(--font-secondary);
}

#hero .hero-div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#hero .hero-div .hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

#hero .hero-div .social-media {
    display: none;
}

#hero h1 {
    font-size: 4rem;
    color: var(--light-purple);
    font-weight: lighter;
    text-shadow: 1px 1px 8px rgb(50, 8, 101);
}

#hero h2 {
    font-size: 10vw;
    font-weight: bolder;
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, #fff 40%, #C89DFB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.4));
}

#hero p {
    font-family: var(--font-tertiary);
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    width: 0;
    min-width: 100%;
    line-height: 1.5;
}

#hero .hero .buttons {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

#hero .contact {
    width: 80%;
    margin: 0px 10px 20px 0px ;
    max-width: 350px;
}

#hero .offer {
    box-shadow: none;
}

#hero .contact.offer:hover {
    box-shadow: none;
}



/* ========== ANIMATIONS ========== */
.glow {
    font-weight: 50;
    letter-spacing: 0.05em;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--hover-purple), 0 0 0 white;
    }
    to {
        text-shadow: 0 0 50px var(--hover-purple), 0 0 5px white;
    }
}

@keyframes hamburger_puls {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.4);
        box-shadow: 0 0 20px var(--primary-purple);
    }
}

@keyframes photoChange {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes zoom {
    0% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoom1 {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes unzoom {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

@keyframes zoom2 {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* ========== ABOUT SECTION ========== */
#about {
    box-shadow: var(--dark-purple) 0 0 0.5rem;
    background-image: url(./img/about-me/aboutme-background.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}



#about .about {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 10px;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

#about .col-left {
    width: 85%;
    opacity: 0;
    transform: translateX(-50px);
}

#about .col-left.reveal {
    animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#about .col-right {
    display: flex;
    flex-direction: column;
    width: 90%;
    align-items: flex-start;
    margin-top: 30px;
    opacity: 0;
    transform: translateX(50px);
}

#about .col-right.reveal {
    animation: fadeInRight 0.8s ease forwards 0.2s;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#about .col-right h1 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    display: block;
    font-size: 8vw;
    position: relative;
    background: linear-gradient(135deg, #fff, #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.4));
    margin-bottom: 20px;
}

#about .col-right p {
    font-family: var(--font-tertiary);
    text-align: justify;
    font-size: 1.5rem;
    line-height: 3rem;
    color: rgba(255, 255, 255, 0.95);
}

#about .col-left .about-img {
    position: relative;
}

#about .col-left .about-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    z-index: -1;
    border-radius: 20px;
    box-shadow: -15px -15px 1px rgba(255, 255, 255, 0.05),
                0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

#about .col-left .about-img img:hover {
    transform: translateY(-5px);
    box-shadow: -20px -20px 1px rgba(255, 255, 255, 0.08),
                0 15px 50px rgba(0, 0, 0, 0.6);
}

#about .col-right .photos {
    padding: 12px;
    width: 70%;
    max-width: 350px;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== MOVIE SECTION ========== */
#movie {
    background-image: url(./img/movie-background.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}

#movie.standalone {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#movie.standalone .movie {
    padding: 40px 0;
}

#movie::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(129, 42, 233, 0.15) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        rgba(106, 14, 214, 0.15) 100%);
    z-index: -1;
    animation: movieGradient 10s ease infinite alternate;
}

@keyframes movieGradient {
    0% {
        background: linear-gradient(135deg, 
            rgba(129, 42, 233, 0.15) 0%, 
            rgba(0, 0, 0, 0.6) 50%, 
            rgba(106, 14, 214, 0.15) 100%);
    }
    100% {
        background: linear-gradient(135deg, 
            rgba(106, 14, 214, 0.2) 0%, 
            rgba(0, 0, 0, 0.65) 50%, 
            rgba(129, 42, 233, 0.2) 100%);
    }
}

#movie .movie {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 10px;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

#movie .movie .social-media-phone {
    position: absolute;
    top: 0;
    margin-top: 40px;
}

#movie .movie .social-media-phone ul {
    display: flex;
    font-size: 5vw;
}

#movie .movie .social-media-phone ul li {
    display: flex;
    margin: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

#movie .movie .social-media-phone ul li.reveal {
    opacity: 1;
    transform: translateY(0);
}

#movie .movie .social-media-phone ul li:nth-child(1).reveal {
    transition-delay: 0.1s;
}

#movie .movie .social-media-phone ul li:nth-child(2).reveal {
    transition-delay: 0.2s;
}

#movie .movie .social-media-phone ul li:nth-child(3).reveal {
    transition-delay: 0.3s;
}

#movie .movie .social-media-phone ul li:nth-child(4).reveal {
    transition-delay: 0.4s;
}

#movie .movie .social-media-phone ul li a,
#movie .movie .social-media-phone ul li a:visited,
#movie .movie .social-media-phone ul li a:focus {
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#movie .movie .social-media-phone ul li a:hover {
    cursor: pointer;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(129, 42, 233, 0.6);
    border-color: rgba(200, 157, 251, 0.5);
}

#movie .movie .social-media-phone ul li a.fa-facebook-f:hover {
    background: linear-gradient(135deg, #1877F2, #4267B2);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5);
}

#movie .movie .social-media-phone ul li a.fa-youtube:hover {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

#movie .movie .social-media-phone ul li a.fa-instagram:hover {
    background: linear-gradient(135deg, #E4405F, #FD1D1D, #F77737, #FCAF45);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5);
}

#movie .movie .social-media-phone ul li a.fa-tiktok:hover {
    background: linear-gradient(135deg, #00F2EA, #FF0050);
    box-shadow: 0 8px 25px rgba(0, 242, 234, 0.5);
}

#movie .movie .social-media-phone ul li a.fa-google:hover {
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
}

#movie .movie h1 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    display: block;
    font-size: 8vw;
    position: relative;
    background: linear-gradient(135deg, #fff, #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.4));
    margin-bottom: 25px;
    letter-spacing: 2px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

#movie .movie h1:not(.reveal) {
    animation: fadeInFromTop 0.8s ease forwards;
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#movie .movie h1.reveal {
    opacity: 1;
    transform: translateY(0);
}

#movie .movie .iframe-container {
    overflow: hidden;
    position: relative;
    width: 80%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(129, 42, 233, 0.4),
                0 20px 80px rgba(0, 0, 0, 0.6),
                inset 0 0 0 2px rgba(129, 42, 233, 0.2);
    transition: all 0.5s ease;
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.1), rgba(200, 157, 251, 0.05));
    opacity: 1;
    transform: scale(1) translateY(0);
}

#movie .movie .iframe-container:not(.reveal) {
    animation: fadeInScale 0.8s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#movie .movie .iframe-container.reveal {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#movie .movie .iframe-container:hover {
    box-shadow: 0 0 80px rgba(129, 42, 233, 0.6),
                0 25px 100px rgba(0, 0, 0, 0.7),
                inset 0 0 0 2px rgba(129, 42, 233, 0.4);
    transform: translateY(-5px) scale(1.01);
}

#movie .movie .iframe-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

#movie .movie .iframe-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-purple), 
        var(--light-purple), 
        var(--accent-purple), 
        var(--primary-purple));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        filter: blur(15px) hue-rotate(0deg);
    }
    100% {
        filter: blur(15px) hue-rotate(360deg);
    }
}

#movie .movie .iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 18px;
}

#movie .movie .iframe-container .cookies-youtube,
#movie .movie .iframe-container .cookies-youtube-dzieci {
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 20, 0.95);
    z-index: 10;
}

#movie .movie .iframe-container .cookies-youtube.active,
#movie .movie .iframe-container .cookies-youtube-dzieci.active {
    display: flex;
}

#movie .movie .iframe-container .cookies-youtube p,
#movie .movie .iframe-container .cookies-youtube-dzieci p {
    font-family: var(--font-tertiary);
    text-align: center;
    font-size: 1.5rem;
    line-height: 3rem;
    color: white;
    margin: 20px;
}

#movie .movie .iframe-container .cookies-youtube .button-cookie,
#movie .movie .iframe-container .cookies-youtube-dzieci .button-cookie {
    width: 80%;
    max-width: 350px;
}
/* ========== SERVICES SECTION ========== */
#services {
    background: var(--gradient-light);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(129, 42, 233, 0.03) 0%, transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: translate(0, 0);
    }
    50% {
        opacity: 0.7;
        transform: translate(5%, 5%);
    }
}

#services .services {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

#services .title {
    justify-content: center;
    text-align: center;
    margin: 30px;
    opacity: 0;
    transform: translateY(30px);
}

#services .title.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

#services .title h1 {
    font-size: 3vw;
    font-family: var(--font-secondary);
    font-weight: normal;
    color: var(--dark-purple);
    opacity: 0.8;
}

#services .title h2 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    display: block;
    width: fit-content;
    font-size: 5vw;
    position: relative;
    background: linear-gradient(135deg, var(--dark-purple), #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.3));
}

#services .all-services .service-col {
    display: flex;
    gap: 15px;
}

#services .all-services .service-col .service-item {
    position: relative;
    margin: 10px 0;
    max-width: 380px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(10px);
    width: 50%;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(129, 42, 233, 0.1), 
                0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

#services .all-services .service-col .service-item.reveal {
    animation: fadeInScale 0.8s ease forwards;
}

#services .all-services .service-col .service-item:nth-child(1).reveal {
    animation-delay: 0.1s;
}

#services .all-services .service-col .service-item:nth-child(2).reveal {
    animation-delay: 0.2s;
}

#services .all-services .service-col .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

#services .all-services .service-col .service-item:hover::before {
    opacity: 0.6;
}

#services .all-services .service-col .service-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(129, 42, 233, 0.25), 
                0 8px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.95));
}

#services .all-services .service-col .service-item img {
    margin-top: 5px;
    margin-bottom: 5px;
    width: 45%;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 10px rgba(129, 42, 233, 0.2));
}

#services .all-services .service-col .service-item:hover img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 15px rgba(129, 42, 233, 0.4));
}

#services .all-services .service-col .service-item h3 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: calc(12px + 0.5vw);
    font-family: var(--font-secondary);
    font-weight: bold;
    color: var(--dark-purple);
    transition: all 0.3s ease;
}

#services .all-services .service-col .service-item:hover h3 {
    color: var(--primary-purple);
    text-shadow: 0 0 10px rgba(129, 42, 233, 0.3);
}

#services .all-services .service-col .service-item p {
    font-family: var(--font-tertiary);
    line-height: 1.6;
    font-size: 1.15rem;
    margin: 5px 8px;
    color: rgba(72, 52, 85, 0.85);
    transition: color 0.3s ease;
}

#services .all-services .service-col .service-item:hover p {
    color: rgba(72, 52, 85, 1);
}

/* ========== PHOTOS SECTION ========== */
#photos {
    background: var(--gradient-light-alt);
    position: relative;
}

#photos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(129, 42, 233, 0.03) 0%, transparent 50%);
    animation: gradientShiftAlt 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShiftAlt {
    0%, 100% {
        opacity: 0.7;
        transform: translate(5%, 5%);
    }
    50% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* Scroll reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

#photos .photos {
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

#photos .gallery h1 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    display: block;
    width: fit-content;
    font-size: 5vw;
    position: relative;
    background: linear-gradient(135deg, var(--dark-purple), #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.3));
    margin: 30px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

#photos .gallery h1.reveal {
    opacity: 1;
    transform: translateX(0);
}

#photos .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    margin-bottom: 50px;
    width: 100%;
}

#photos .gallery .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 20px;
}

#photos .gallery .items .roll {
    display: contents;
}

#photos .gallery .items .roll-elem {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(129, 42, 233, 0.15), 
                0 2px 8px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
}

#photos .gallery .items .roll-elem.reveal {
    opacity: 1;
    transform: scale(1) translateY(0);
}

#photos .gallery .items .roll-elem:nth-child(1).reveal {
    transition-delay: 0.1s;
}

#photos .gallery .items .roll-elem:nth-child(2).reveal {
    transition-delay: 0.15s;
}

#photos .gallery .items .roll-elem:nth-child(3).reveal {
    transition-delay: 0.2s;
}

#photos .gallery .items .roll-elem:nth-child(4).reveal {
    transition-delay: 0.25s;
}

#photos .gallery .items .roll-elem:nth-child(5).reveal {
    transition-delay: 0.3s;
}

#photos .gallery .items .roll-elem:nth-child(6).reveal {
    transition-delay: 0.1s;
}

#photos .gallery .items .roll-elem:nth-child(7).reveal {
    transition-delay: 0.15s;
}

#photos .gallery .items .roll-elem:nth-child(8).reveal {
    transition-delay: 0.2s;
}

#photos .gallery .items .roll-elem:nth-child(9).reveal {
    transition-delay: 0.25s;
}

#photos .gallery .items .roll-elem:nth-child(10).reveal {
    transition-delay: 0.3s;
}

#photos .gallery .items .roll-elem:nth-child(11).reveal {
    transition-delay: 0.35s;
}

#photos .gallery .items .roll-elem:nth-child(12).reveal {
    transition-delay: 0.4s;
}

#photos .gallery .items .roll-elem:nth-child(13).reveal {
    transition-delay: 0.45s;
}

#photos .gallery .items .roll-elem:nth-child(14).reveal {
    transition-delay: 0.5s;
}

#photos .gallery .items .roll-elem:nth-child(15).reveal {
    transition-delay: 0.55s;
}

#photos .gallery .items .roll-elem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.1), rgba(200, 157, 251, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

#photos .gallery .items .roll-elem:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(129, 42, 233, 0.3), 
                0 4px 15px rgba(0, 0, 0, 0.2);
}

#photos .gallery .items .roll-elem:hover::before {
    opacity: 1;
}

#photos .gallery .items .roll-elem:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

#photos .photos .roll .roll-elem img {
    max-width: 100%;
    max-height: 200px;
    animation: unzoom 0.3s ease-in-out alternate-reverse forwards;
}

#photos .photos .roll .roll-elem img:hover {
    cursor: pointer;
    animation: zoom1 0.3s ease-in-out alternate-reverse forwards;
}

.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
    cursor: pointer;
    padding: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal img {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(129, 42, 233, 0.3);
    animation: scaleIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    transition: opacity 0.2s ease-in-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal close button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    font-weight: 200;
    font-family: Arial, sans-serif;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1002;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

.modal-close:hover {
    background: rgba(129, 42, 233, 0.3);
    border-color: var(--primary-purple);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(129, 42, 233, 0.5);
}

/* Modal navigation buttons */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 32px;
    font-weight: 200;
    font-family: Arial, sans-serif;
    cursor: pointer;
    text-align: center;
    line-height: 46px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    z-index: 1002;
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-nav:hover {
    background: rgba(129, 42, 233, 0.3);
    border-color: var(--primary-purple);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(129, 42, 233, 0.5);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

@media only screen and (max-width: 768px) {
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 22px;
        line-height: 33px;
        top: 10px;
        right: 10px;
    }
    
    .modal-nav {
        width: 35px;
        height: 35px;
        font-size: 24px;
        line-height: 33px;
    }
    
    .modal-prev {
        left: 5px;
    }
    
    .modal-next {
        right: 5px;
    }
    
    .modal-nav:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .modal-nav:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .modal img {
        max-width: 90%;
        max-height: 80vh;
    }
}

/* ========== RECOMMENDATION SECTION ========== */
#recommendation {
    box-shadow: var(--dark-purple) 0 0 0.5rem;
    background-image: url(./img/about-me/aboutme-background.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#recommendation .recommendation {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px 20px;
}

#recommendation .recommendation h1 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    display: block;
    font-size: 8vw;
    position: relative;
    background: linear-gradient(135deg, #fff, #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.4));
    margin: 30px 0 50px;
}

/* Carousel Container */
#recommendation .carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    padding: 40px 0;
    perspective: 1000px;
}

/* Carousel Track */
#recommendation .carousel-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Recommendation Items */
#recommendation .recommendation-item {
    flex-shrink: 0;
    width: 600px;
    max-width: 90vw;
    margin: 0 15px;
    padding: 50px 40px 35px;
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.1), rgba(200, 157, 251, 0.05));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(200, 157, 251, 0.3);
    border-radius: 25px;
    box-shadow: 0 8px 32px rgba(124, 41, 226, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    filter: blur(4px);
    transform: scale(0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
    pointer-events: none;
    position: relative;
    overflow: hidden;
}

#recommendation .recommendation-item::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(200, 157, 251, 0.15);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}

#recommendation .recommendation-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

#recommendation .recommendation-item.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    box-shadow: 0 12px 50px rgba(124, 41, 226, 0.5),
                0 0 80px rgba(129, 42, 233, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(129, 42, 233, 0.15), rgba(200, 157, 251, 0.08));
    border-color: rgba(200, 157, 251, 0.5);
    pointer-events: auto;
    z-index: 10;
    animation: cardPulse 4s ease-in-out infinite;
}

@keyframes cardPulse {
    0%, 100% {
        box-shadow: 0 12px 50px rgba(124, 41, 226, 0.5),
                    0 0 80px rgba(129, 42, 233, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2),
                    0 0 0 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 12px 50px rgba(124, 41, 226, 0.7),
                    0 0 120px rgba(129, 42, 233, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    0 0 0 1px rgba(255, 255, 255, 0.2);
    }
}

#recommendation .recommendation-item.prev,
#recommendation .recommendation-item.next {
    opacity: 0.6;
    filter: blur(3px);
    transform: scale(0.85);
    z-index: 5;
}

#recommendation .recommendation-item h2 {
    font-family: var(--font-tertiary);
    font-weight: 400;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(200, 157, 251, 0.8);
    margin-top: 25px;
    text-align: right;
    font-style: italic;
    position: relative;
    z-index: 2;
}

#recommendation .recommendation-item h2::before {
    content: '— ';
    opacity: 0.6;
}

#recommendation .recommendation-item p {
    font-family: var(--font-tertiary);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Navigation Buttons */
#recommendation .carousel-nav {
    position: absolute;
    top: 50%;
    margin-top: -27.5px;
    width: 55px;
    height: 55px;
    background: rgba(129, 42, 233, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--light-purple);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

#recommendation .carousel-nav:hover {
    background: var(--primary-purple);
    box-shadow: 0 0 30px var(--glow-purple);
    transform: scale(1.15);
    border-color: white;
}

#recommendation .carousel-nav:active {
    transform: scale(0.95);
}

#recommendation .carousel-nav-left {
    left: 10px;
}

#recommendation .carousel-nav-right {
    right: 10px;
}

#recommendation .carousel-nav svg {
    width: 30px;
    height: 30px;
}

/* Carousel Indicators */
#recommendation .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 30px;
}

#recommendation .carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

#recommendation .carousel-indicators .indicator.active {
    background: var(--light-purple);
    box-shadow: 0 0 15px var(--light-purple);
    transform: scale(1.3);
}

/* Mobile optimizations */
@media only screen and (max-width: 768px) {
    #recommendation .carousel-container {
        padding: 40px 0;
    }
    
    #recommendation .recommendation-item {
        width: 280px;
        max-width: calc(100vw - 130px);
        margin: 0 10px;
        padding: 30px 20px;
        min-height: 250px;
    }
    
    #recommendation .carousel-nav {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    #recommendation .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    #recommendation .carousel-nav-left {
        left: -5px;
    }
    
    #recommendation .carousel-nav-right {
        right: -5px;
    }
    
    #recommendation .recommendation-item h2 {
        font-size: clamp(0.85rem, 2.5vw, 1.1rem);
        margin-top: 15px;
    }
    
    #recommendation .recommendation-item p {
        font-size: clamp(1.35rem, 3.5vw, 1.7rem);
        line-height: 1.7;
    }
}

/* ========== CONTACT SECTION ========== */
#contact {
    box-shadow: var(--dark-purple) 0 0 0.5rem;
    background-image: url(./img/about-me/aboutme-background.jpg);
    background-size: cover;
    background-position: top center;
    position: relative;
    z-index: 1;
}

#contact .contact {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0 20px;
}

#contact .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contact .title h1 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    display: block;
    font-size: 8vw;
    position: relative;
    background: linear-gradient(135deg, #fff, #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.4));
    margin-bottom: 30px;
    text-align: center;
}

#contact .title h2 {
    font-size: 3rem;
    color: var(--light-purple);
    font-weight: lighter;
    text-align: center;
}

#contact .contact-columns {
    display: flex;
    flex-direction: column;
}

#contact .contact-columns .elements {
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#contact .contact-columns .elements h1 {
    font-family: var(--font-secondary);
    font-weight: bolder;
    color: white;
    text-align: center;
    margin-top: 20px;
}


#contact .contact-columns .elements .contact-elem {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin: 15px 25px;
    width: 80%;
    transition: all 0.3s ease;
}

#contact .contact-columns .elements .contact-elem:hover {
    transform: translateX(10px);
}

#contact .contact-columns .elements .contact-elem .logo img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(129, 42, 233, 0.5));
}

#contact .contact-columns .elements hr.rounded {
    margin-top: 20px;
}

#contact .contact-columns .elements .contact-elem .logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .contact-columns .elements .contact-elem .info {
    margin: 10px;
}

#contact .contact-columns .elements .contact-elem .info h3 {
    font-size: 1.3rem;
    font-family: var(--font-secondary);
    font-weight: lighter;
    color: var(--light-purple);
    text-align: left;
    margin-top: 0;
}

#contact .contact-columns .elements .contact-elem .info h2 {
    font-size: 4vw;
    font-family: var(--font-secondary);
    font-weight: normal;
    color: white;
}

#contact .contact-columns .email-background {
    margin: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#contact .contact-columns .email-background:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(129, 42, 233, 0.4);
    border-color: rgba(200, 157, 251, 0.3);
}

#contact .contact-columns .email {
    display: flex;
    flex-direction: column;
    margin: 20px 40px;
    margin-bottom: 0;
}

#contact .success-message {
    padding: 40px;
    text-align: center;
}

#contact .success-message h1 {
    background: linear-gradient(135deg, #fff, #C89DFB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.4));
}

#contact .success-message p {
    color: rgba(255, 255, 255, 0.9);
}

#contact .success-message .button {
    margin-top: 20px;
}

#contact .contact-columns .email label {
    font-size: 1.3rem;
    font-family: var(--font-secondary);
    font-weight: normal;
    color: white;
}

#contact input[type=text],
#contact select,
#contact textarea,
#contact input[type=date] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-tertiary);
    transition: all 0.3s ease;
}

#contact input[type=text]::placeholder,
#contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--light-purple);
    box-shadow: 0 0 20px rgba(129, 42, 233, 0.4);
}

#contact .email-send {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contact .email-send h1 {
    font-family: var(--font-secondary);
    font-weight: lighter;
    display: block;
    font-size: 6vw;
    position: relative;
    color: white;
    margin: 120px 50px 30px;
    text-align: center;
}

#contact .email .columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#contact .email .columns .col-left {
    margin-right: 10px;
}

#contact .end-rabbit {
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .end-rabbit img {
    object-position: 30px 60px;
}

#contact .back-to-main {
    padding: 12px;
    width: 70%;
    max-width: 350px;
    margin: 20px auto 30px;
}



/* ========== MEDIA QUERIES ========== */
@media only screen and (min-width: 1200px) {
    /* Header Desktop */
    #header .logo {
        display: none;
    }

    #header h1 a {
        margin-left: 0;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #fff 0%, #fff 60%, #C89DFB 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        filter: drop-shadow(0 2px 15px rgba(129, 42, 233, 0.3));
    }

    #header h1 a:hover {
        filter: drop-shadow(0 2px 20px rgba(129, 42, 233, 0.6));
        transform: translateY(-2px);
    }

    #header .hamburger,
    #header .hamburger2 {
        display: none;
    }

    #header .nav-list ul {
        position: initial;
        display: block;
        height: auto;
        width: fit-content;
        background-color: transparent;
    }

    #header .nav-list ul li {
        display: inline-block;
    }

    #header .nav-list ul li a {
        font-size: 1.7rem;
        transition: all 0.3s ease;
    }
    
    #header .nav-list ul li a:hover {
        color: var(--light-purple);
        transform: translateY(-2px);
        text-shadow: 0 0 15px rgba(200, 157, 251, 0.5);
    }

    #header .nav-list ul a::after {
        display: none;
    }

    #header .phone {
        display: flex;
    }

    /* Cookie Banner Desktop */
    #cookie-banner {
        font-size: 14px;
        transition: all 1s ease;
    }

    #cookie-banner a {
        padding: 0;
    }

    #cookie-banner .buttons-cookie {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    /* Hero Desktop */
    #hero {
        box-shadow: var(--dark-purple) 0 0 0.5rem;
        background-image: url(./img/hero-background.jpg);
        background-size: cover;
        background-position: top center;
        position: relative;
        z-index: 1;
    }
    
    #hero::after {
        display: none;
    }
    #hero .hero {
        align-items: center;
        justify-content: flex-start;
        padding-left: 150px;
    }

    #hero .hero .hero-main {
        align-items: flex-start;
    }

    #hero .hero h2 {
        font-size: 7rem;
    }

    #hero .hero h1 {
        font-size: 4rem;
        position: relative;
        top: 25px;
    }

    #hero .hero p {
        text-align: justify;
    }

    #hero .hero .buttons {
        flex-wrap: nowrap;
    }

    #hero .hero-div .social-media {
        display: flex;
        position: absolute;
        right: 0;
    }

    #hero .hero-div .social-media ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 40px;
        font-size: 4rem;
    }

    #hero .hero-div .social-media ul li {
        margin: 20px;
        list-style-type: none;
    }

    #hero .hero-div .social-media ul li a,
    #hero .hero-div .social-media ul li a:visited,
    #hero .hero-div .social-media ul li a:focus {
        color: #fff;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    #hero .hero-div .social-media ul li a:hover {
        transform: translateY(-5px) scale(1.1);
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(129, 42, 233, 0.6);
        border-color: rgba(200, 157, 251, 0.5);
    }
    
    #hero .hero-div .social-media ul li a.fa-facebook-f:hover {
        background: linear-gradient(135deg, #1877F2, #4267B2);
        box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
    }
    
    #hero .hero-div .social-media ul li a.fa-youtube:hover {
        background: linear-gradient(135deg, #FF0000, #CC0000);
        box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
    }
    
    #hero .hero-div .social-media ul li a.fa-instagram:hover {
        background: linear-gradient(135deg, #E4405F, #FD1D1D, #F77737, #FCAF45);
        box-shadow: 0 10px 30px rgba(228, 64, 95, 0.5);
    }
    
    #hero .hero-div .social-media ul li a.fa-tiktok:hover {
        background: linear-gradient(135deg, #00F2EA, #FF0050);
        box-shadow: 0 10px 30px rgba(0, 242, 234, 0.5);
    }
    
    #hero .hero-div .social-media ul li a.fa-google:hover {
        background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
        box-shadow: 0 10px 30px rgba(66, 133, 244, 0.5);
    }

    /* Movie Desktop */
    #movie .movie .social-media-phone {
        display: none;
    }

    #movie .movie h1 {
        font-size: 5rem;
    }

    #movie .movie .iframe-container::after {
        padding-top: 56.25%;
    }

    /* About Desktop */
    #about .about {
        flex-direction: row;
    }

    #about .col-left {
        width: 50%;
    }

    #about .col-left .about-img img {
        box-shadow: -30px -30px 1px #ffffff15;
    }

    #about .col-right {
        width: 40%;
        align-items: flex-start;
    }

    #about .col-right h1 {
        font-size: 5rem;
        width: fit-content;
    }

    #about .col-right .photos {
        margin-left: 0;
        margin-right: 0;
    }

    /* Services Desktop */
    #services .title h1 {
        font-size: 3rem;
    }

    #services .title h2 {
        font-size: 5rem;
    }

    #services .all-services {
        display: flex;
        justify-content: center;
        flex-direction: row;
        max-width: 1200px;
        margin-top: 50px;
    }

    #services .all-services .service-col {
        flex-direction: column;
        width: 33%;
        margin: 0 15px;
    }

    #services .all-services .service-col .service-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 10px 0;
        flex: 1 1 0;
        min-height: 280px;
        padding: 18px 14px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, box-shadow;
    }

    #services .all-services .service-col .service-item h3 {
        font-size: 1.8rem;
        display: inline-block;
        margin: 10px 0 8px 0;
        text-align: center;
        width: 100%;
    }
    
    #services .all-services .service-col .service-item p {
        font-size: 1.4rem;
        line-height: 1.6;
        margin: 6px 12px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
        text-align: center;
        max-width: 92%;
    }
    
    #services .all-services .service-col .service-item img {
        width: 38%;
        display: block;
        margin: 5px auto 6px auto;
    }

    #services .all-services .service-col .service-item img {
        width: 30%;
    }

    #services .all-services .service-item:hover {
        box-shadow: 0 0 20px #7c29e24d;
    }

    #upupup {
        position: relative;
        bottom: 30px;
    }

    /* Photos Desktop */
    #photos .gallery h1 {
        font-size: 5rem;
    }

    #photos .gallery .items {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
        max-width: 1200px;
        padding: 30px;
    }

    #photos .gallery .items .roll {
        display: contents;
    }

    #photos .gallery .items .roll-elem {
        position: relative;
        background-size: cover;
        background-position: center;
        border-radius: 20px;
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 1;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 20px rgba(129, 42, 233, 0.15), 
                    0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    #photos .gallery .items .roll-elem:hover {
        transform: scale(1.08) translateY(-5px);
        box-shadow: 0 15px 40px rgba(129, 42, 233, 0.3), 
                    0 8px 20px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    #photos .photos .roll .roll-elem img {
        max-width: 100%;
        max-height: 100%;
        animation: unzoom 0.3s ease-in-out alternate-reverse forwards;
    }

    #photos .photos .roll .roll-elem:hover {
        animation: zoom1 0.3s ease-in-out alternate-reverse forwards;
    }

    #photos .photo-elem.active {
        background-attachment: fixed;
    }
    /* Recommendation Desktop */
    #recommendation .recommendation h1 {
        font-size: 5rem;
    }

    #recommendation .carousel-container {
        width: 90%;
        max-width: 1400px;
    }

    #recommendation .recommendation-item {
        width: 700px;
        max-width: 80vw;
        margin: 0 20px;
        padding: 60px 50px;
        min-height: 350px;
    }

    #recommendation .recommendation-item.prev,
    #recommendation .recommendation-item.next {
        opacity: 0.7;
        filter: blur(2px);
    }

    #recommendation .carousel-nav {
        width: 65px;
        height: 65px;
        margin-top: -32.5px;
    }

    #recommendation .carousel-nav-left {
        left: 20px;
    }

    #recommendation .carousel-nav-right {
        right: 20px;
    }

    /* Contact Desktop */
    #contact .title h1 {
        font-size: 5rem;
    }

    #contact .title h2 {
        font-size: 2rem;
    }

    #contact .contact-columns {
        display: flex;
        flex-direction: row-reverse;
        margin: 20px;
        width: 60%;
        justify-content: center;
    }

    #contact .contact-columns .elements {
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 20px 0 100px 0;
    }

    #contact .contact .elements h1 {
        font-size: 2rem;
    }

    #contact .contact .elements h2 {
        font-size: 1.5rem;
    }

    #contact .contact-columns .elements .contact-elem .info h2 {
        font-size: 2rem;
    }

    #contact .email-send h1 {
        font-size: 3rem;
    }

    #contact .contact-columns .email-background {
        background-color: rgba(255, 255, 255, 0.15);
        width: 40%;
        min-width: 400px;
    }
}

/* ========== EXTRA LARGE SCREENS ========== */
@media only screen and (min-width: 1450px) {
    #hero .hero h2 {
        font-size: 7.5rem;
    }
}