/* Exact Bubbles & Bluebells Style with Freight Big Pro */
@font-face {
    font-family: 'W-font';
    src: url('../fonts/W-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'D-font';
    src: url('../fonts/D-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

:root {
    /* Warm Earth Tone Colors from Instagram */
    --bg-cream: #f7f4f0;
    --bg-white: #fefefe;
    --bg-warm: #f2ede7;
    --text-dark: #53504b;
    --text-medium: #6b5d4f;
    --text-light: #b9ac9f;
    --text-ultra-light: #c4b59f;
    --border-light: #e6ddd2;
    --accent-warm: #d4c0a1;
    --accent-brown: #d7ccbc;
    --cream-soft: #f9f6f2;
    
    /* Typography - Freight Big Pro */
    --font-script: 'W-font', 'Dancing Script', cursive;
    --font-body: 'freight-big-pro', 'Lato', serif;
    --font-heading: 'freight-big-pro', 'Lato', serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-padding: 40px;
    --max-width: 1200px;
    
    /* Transitions */
    --transition: all 0.2s ease;
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.15s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    font-size: 14px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

.unfilter {
    filter: none !important;
}

/* Header - Clean Bubbles & Bluebells Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header {
    background: rgba(255, 255, 255, 0.8);
}

.header .nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 4rem;
    max-width: 100%;
    padding: 20px 40px;
}

.header .nav__brand {
    font-size: 20px;
    letter-spacing: 4px;
    margin: 0;
    order: 2;
}

.header .nav__menu {
    display: none;
}

.header li {
    display: flex;
    align-items: center;
}

.header .nav__menu--left {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0;
    order: 1;
    flex: 1;
    justify-content: end;
}

.header .nav__menu--right {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
    padding: 0;
    order: 3;
    flex: 1;
    justify-content: start;
}

.nav__menu--left a,
.nav__menu--right a {
    color: var(--text-light);
    padding: 5px 0;
}

.nav__menu--left a:hover,
.nav__menu--left a.active,
.nav__menu--right a:hover,
.nav__menu--right a.active {
    color: var(--text-dark);
}

/* Main Navigation */
.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.nav__brand {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.nav__logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 10;
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 40px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    justify-content: center;
}

.nav__menu a {
    color: var(--text-light);
    padding: 5px 0;
}

.nav__menu a:hover,
.nav__menu a.active {
    color: var(--text-dark);
}

/* Dropdown Styles */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav__dropdown-toggle i {
    font-size: 10px;
    transition: var(--transition-smooth);
}

.nav__dropdown:hover .nav__dropdown-toggle i {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 15px 0;
    margin: 10px 0 0 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1000;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav__dropdown-menu li {
    text-align: center;
    margin: 0;
}

.nav__dropdown-menu a {
    width: 100%;
    display: block;
    padding: 10px 20px;
    color: var(--text-medium);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav__dropdown-menu a:hover {
    background: var(--bg-cream);
    color: var(--text-dark);
}

.hero-gallery {
    height: calc(60vh + 80px);
    background: var(--bg-cream);
    padding: 80px 0 0;
    overflow: hidden;
}

.hero-gallery .swiper {
    width: 100%;
    height: 100%;
}

.hero-gallery .swiper-wrapper {
    height: 100%;
}

.hero-gallery .swiper-slide {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Navigation Controls - Below Gallery */
.hero-gallery__controls {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.hero-gallery__nav {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px;
    transition: var(--transition);
}

.hero-gallery__nav:hover {
    color: var(--text-dark);
}

.hero-gallery__counter {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 300;
}
/* Welcome Section */
.welcome-section {
    background: var(--bg-cream);
    padding: 6rem var(--container-padding);
    text-align: center;
}

.welcome__content {
    max-width: 800px;
    margin: 0 auto;
}

.welcome__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dark);
    margin-bottom: 3rem;
    line-height: 1.4;
}

.welcome__button {
    padding: 1rem 10rem !important;
}

/* Main Content Sections */
.section {
    padding: var(--section-padding) var(--container-padding);
    background: var(--bg-cream);
}

.section--white {
    background: var(--bg-white);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: var(--bg-cream);
}

/* Section with Script Title */
.section__script {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 48px;
    font-weight: 300;
    color: var(--text-ultra-light);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

/* About Section - Hello Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about__image-caption {
    position: absolute;
    top: -80px;
    left: 70px;
    font-family: 'D-font', var(--font-script);
    font-style: normal;
    font-size: 150px;
    font-weight: 400;
    color: var(--text-dark);
    z-index: 2;
    line-height: 0.8;
    /* Etwas nach rechts neigen */
    transform: rotate(-7deg);
}

.about__content {
    padding-left: 2rem;
}

.about__subtitle {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.about__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Service Cards Grid - Exact Bubbles & Bluebells Style */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 80px 0;
    padding: 0 40px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-smooth);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-card__image {
    width: 100%;
    height: 200px;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-card__image img {
    transform: scale(1.03);
}

.service-card__title {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 20px;
    font-weight: 300;
    color: var(--text-dark);
    margin: 0;
    padding: 10px 0;
}

/* Journey Section - Innovative Design */
.journey-section {
    position: relative;
    background: var(--bg-white);
    padding: 8rem var(--container-padding);
    text-align: center;
    overflow: hidden;
}

.journey__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 192, 161, 0.1);
    animation: float 8s ease-in-out infinite;
}

.float-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

.float-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.journey__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.journey__title {
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    font-family: var(--font-body);
    font-size: 48px;
    font-weight: 100;
    color: var(--accent-brown);
    line-height: 1.2;
}

.journey__subtitle {
    font-family: var(--font-body) !important;
    font-size: 24px;
    color: var(--text-ultra-light);
    margin-bottom: 4rem;
}

.journey__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 4rem;
}

.step-item {
    position: relative;
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.step-item::before {
    content: attr(data-step);
    position: absolute;
    top: -15px;
    left: 2rem;
    background: var(--accent-brown);
    color: var(--bg-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.step-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.step__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-brown);
}

.step__title {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step__text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Studio Section */
.studio-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
}

.studio__content {
    padding: 80px;
    background: var(--bg-white);
}

.studio__text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 40px;
}

.studio__image {
    height: 500px;
}

.studio__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-white);
    padding: var(--section-padding) var(--container-padding);
}

.testimonials__title {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 48px;
    font-weight: 300;
    color: var(--text-ultra-light);
    text-align: center;
    margin-bottom: 80px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.testimonial {
    background: var(--bg-warm);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.testimonial__text {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial__author {
    font-size: 11px;
    color: var(--text-light);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.contact__content {
    background: var(--bg-white);
    padding: 80px;
}

.contact__script {
    font-family: var(--font-script);
    font-style: italic;
    font-size: 42px;
    font-weight: 300;
    color: var(--text-ultra-light);
    margin-bottom: 30px;
}

.contact__subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact__text {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.contact__image {
    background-size: cover;
    background-position: center;
}

/* Form Styles */
.contact-form {
    margin-top: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    background: var(--cream-soft);
    font-size: 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-brown);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--accent-brown);
    color: var(--bg-white);
    padding: 15px 30px;
    border: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    opacity: 0.8;
}

/* Social Media Section */
.social-section {
    padding: var(--section-padding) 0;
    background: var(--bg-cream);
    position: relative;
}

.social-section__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 var(--container-padding);
}

.social-section__header {
    text-align: center;
    margin-bottom: 1rem;
}

.social-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.social-section__subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    color: var(--text-medium);
}

.social-link p {
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.social-container {
    padding: 20px 50px;
    display: flex
;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
    background: var(--bg-white);
}

.social-link:hover .social-container {
    transform: scale(1.05);
}

.social-username {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-brown);
}

.social-section__gallery {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
}

.social-grid {
    display: flex;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.social-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.social-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.social-section__gallery:hover .social-gallery-overlay {
    opacity: 1;
}

.social-section__gallery:hover .social-item img {
    transform: scale(1.05);
}

.social-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-overlay-text {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-overlay-links {
    display: flex;
    gap: 2rem;
}

.social-overlay-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--bg-white);
    font-weight: 100;
    text-transform: uppercase;
    padding: 0.8rem 1.5rem;
    transition: var(--transition-smooth);
    background: var(--accent-brown); /* Beige background */
}

.social-overlay-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Instagram Section - Fallback für alte Seiten */
.instagram-section {
    padding: var(--section-padding) 0;
    background: var(--primary-cream);
    position: relative;
}

.instagram-section__container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.instagram-section__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 var(--container-padding);
}

.instagram-section__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-dark);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.instagram-section__mobile-info {
    display: none;
}

.instagram-section__gallery {
    position: relative;
    width: 90%;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
    margin: 0 auto;
}

.instagram-grid {
    display: flex;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.instagram-item {
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.instagram-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
}

.instagram-section__gallery:hover .instagram-gallery-overlay {
    opacity: 1;
}

.instagram-section__gallery:hover .instagram-item img {
    transform: scale(1.05);
}

.instagram-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.instagram-overlay-icon {
    width: 20px;
    height: 20px;
    fill: rgba(0, 0, 0, 0.51);
    transition: var(--transition-smooth);
}

.instagram-overlay-instalogo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.instagram-overlay-handle {
    color: rgba(0, 0, 0, 0.61);
    font-weight: 100;
    font-size: 1.5rem;
    text-decoration: none;
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.instagram-section__gallery:hover .instagram-overlay-icon {
    transform: scale(1.1);
}


/* Journey & Process Section */
.journey-section {
    position: relative;
    background: var(--bg-white);
    padding: 8rem var(--container-padding);
    text-align: center;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" x="0" y="0" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23c4b59f" opacity="0.3"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.floating-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--accent-brown);
    opacity: 0.1;
    animation: floatY 6s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.floating-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(20px) translateY(-10px); }
    66% { transform: translateX(-15px) translateY(10px); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.journey__header {
    position: relative;
    z-index: 2;
    margin-bottom: 6rem;
}

.journey__subtitle {
    font-family: var(--font-script);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.journey__title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
}

.journey__description {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.process-step {
    position: relative;
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(61, 53, 42, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 192, 161, 0.1), transparent);
    transition: left 0.5s ease;
}

.process-step:hover::before {
    left: 100%;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(61, 53, 42, 0.15);
}

.step__number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--accent-brown);
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.step__title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.step__description {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Studio Showcase Section */
.studio-showcase {
    padding: 10rem var(--container-padding);
    background: var(--bg-white);
    position: relative;
}

.showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase__content {
    position: relative;
}

.content__badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--accent-brown);
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.content__badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.content__badge:hover::before {
    left: 100%;
}

.content__title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-text {
    font-family: var(--font-script);
    color: var(--accent-brown);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-brown);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.highlight-text:hover::after {
    transform: scaleX(1);
}

.content__features {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-medium);
    position: relative;
    padding-left: 2rem;
}

.feature-item::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--accent-brown);
    font-size: 1.5rem;
    line-height: 1;
}

.feature-item:hover {
    color: var(--text-dark);
    transform: translateX(5px);
    transition: var(--transition-smooth);
}

.showcase__image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.image-stack img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.image-stack img:first-child {
    z-index: 3;
    transform: rotate(-2deg) scale(0.95);
    box-shadow: 0 15px 35px rgba(61, 53, 42, 0.2);
}

.image-stack img:last-child {
    z-index: 2;
    transform: rotate(2deg) translateX(20px) translateY(20px) scale(0.9);
    box-shadow: 0 25px 50px rgba(61, 53, 42, 0.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-warm) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 4;
    pointer-events: none;
}

.showcase__image:hover .image-overlay {
    opacity: 0.1;
}

.showcase__image:hover .image-stack img:first-child {
    transform: rotate(-1deg) scale(1);
}

.showcase__image:hover .image-stack img:last-child {
    transform: rotate(1deg) translateX(10px) translateY(10px) scale(0.95);
}

/* Services Showcase - Bubbles & Bluebells Style */
.services-showcase {
    padding: 8rem 0;
    background: var(--bg-cream);
    position: relative;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid-bubbles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.service-bubble {
    position: relative;
    overflow: visible;
    transition: var(--transition-smooth);
    cursor: pointer;
    margin: 0 auto;
}

.service-bubble:hover {
    transform: translateY(-10px);
}

.service-bubble__image {
    width: 100% !important;
    height: 400px;
    overflow: hidden;
    position: relative;
    padding: 1vh;
    /* border: 3px solid var(--accent-brown); */
}

.service-bubble__image img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-bubble:hover .service-bubble__image img {
    transform: scale(1.07);
}

.service-bubble__content {
    padding: 1rem 1rem;
    text-align: center;
    background: white;
    position: relative;
    top: -2rem;
    left: 2rem;

}

.service-bubble__title {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--text-medium);
    font-weight: 100;
    margin: 0;
    line-height: 1.2;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.services-tagline {
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    margin-top: 2rem;
}

.tagline-main {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tagline-script {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Mobile Services */
@media (max-width: 1024px) {
    .services-grid-bubbles {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .services-container {
        padding: 0 10%;
    }

    .services-showcase {
        padding: 2rem 0 !important;
    }
    
    .services-grid-bubbles {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .service-bubble__image {
        width: 100%;
    }
    
    .service-bubble__title {
        font-size: 2rem;
    }
    
    .tagline-main {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .tagline-script {
        font-size: 1.5rem;
    }

    .welcome__button {
        padding: 1rem !important;
        width: 100%;
    }
}

/* Utils */
.modern_button {
    display: inline-block;
    /* background: var(--accent-brown); */
    color: var(--text-dark);
    padding: 1rem;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid var(--text-dark);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.modern_button:hover {
    transform: scale(1.01);
}

/* Footer */
.footer {
    background: var(--bg-cream);
    padding: 40px var(--container-padding);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

.footer__nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
}

.footer__nav a {
    color: var(--text-light);
    transition: var(--transition);
}

.footer__nav a:hover {
    color: var(--text-dark);
}

.footer__copyright {
    font-size: 12px;
    color: var(--text-ultra-light);
    line-height: 1.8;
}

/* Mobile Responsive */
/* ========== RESPONSIVE DESIGN ========== */

/* Large Tablet - 1280px and below */
@media (max-width: 1280px) {
    .header .nav {
        gap: 2rem;
        padding: 20px 30px;
    }

    .header .nav__menu--left,
    .header .nav__menu--right {
        gap: 1rem;
        font-size: 12px;
        letter-spacing: 1px;
    }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    :root {
        --section-padding: 60px;
        --container-padding: 1.5rem;
    }

    .header .nav {
        gap: 1.5rem !important;
        padding: 20px 30px;
    }

    .header .nav__menu--left,
    .header .nav__menu--right {
        display: none !important;
    }

    .nav__menu {
        gap: 1.5rem;
    }

    .nav__menu a {
        font-size: 11px;
        letter-spacing: 1px;
    }

    .nav__logo {
        max-height: 35px;
    }

    .nav__dropdown-menu {
        font-size: 10px;
    }

    /* Hide split menus on tablet */
    .nav__menu--left,
    .nav__menu--right {
        display: none !important;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
        --container-padding: 1rem;
    }

    body {
        font-size: 16px;
    }

    .header .nav {
        padding: 15px 20px;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .nav__brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav__logo {
        height: 100px !important;
    }

    .nav__menu {
        display: none !important;
    }

    .nav__menu--left,
    .nav__menu--right {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        position: absolute;
        right: 20px;
    }

    .hero-gallery {
        height: auto;
        min-height: 300px;
    }

    .hero-gallery .swiper {
        height: auto;
    }

    .hero-gallery .swiper-wrapper {
        height: auto;
        align-items: flex-start;
    }

    .hero-gallery .swiper-slide {
        height: auto;
        display: block;
    }

    .hero-gallery .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
        object-position: center;
    }

    .hero-gallery__container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
        overflow-x: auto;
    }

    .hero-gallery__slide {
        flex: 0 0 280px;
        width: 280px;
        max-width: calc(100vw - 2rem);
    }
    
    .welcome-section {
        padding: 2rem var(--container-padding);
        text-align: center;
    }

    .welcome__title {
        margin-bottom: 1rem;
    }

    .about-grid,
    .studio-section,
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-section {
        padding: 5rem var(--container-padding);
    }
    
    .journey__title {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
    }
    
    .showcase__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .content__title {
        font-size: 2.2rem;
    }
    
    .showcase__image {
        height: 400px;
    }
    
    .studio-showcase {
        padding: 5rem var(--container-padding);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about__content {
        padding-left: 0 !important;
    }

    .about__image-caption {
        top: -50px;
        left: 30px;
        font-size: 100px;
    }

    .welcome__button {
        padding: 1rem 0;
        width: 100%;
    }

    .about__image img {
        height: auto !important;
    }
    
    /* Social Media Responsive */
    .social-section {
        padding: auto 40px;
    }

    .social-container {
        padding: 15px 30px;
    }

    .social-links {
        gap: 1rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-overlay-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-overlay-link {
        padding: 0.6rem 1.2rem;
    }
    
    .social-section__gallery {
        height: 250px;
    }

    /* Footer */
    .footer__nav {
        font-size: 10px !important;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .footer__nav a {
        white-space: nowrap;
    }
}

/* Extra Small Mobile */
/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .header .nav {
        padding: 12px 15px;
        max-width: 100%;
    }

    .nav__logo {
        height: 200px !important;
    }

    .mobile-menu-toggle {
        right: 15px;
    }

    .mobile-menu-toggle span {
        width: 20px;
        height: 1.5px;
    }

    .mobile-menu__content {
        padding: 30px 20px;
        max-width: 100%;
    }

    .mobile-menu__list a {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .mobile-dropdown-menu a {
        font-size: 10px;
        padding: 6px 25px;
    }

    .hero-gallery__slide {
        flex: 0 0 260px;
        width: 260px;
        max-width: calc(100vw - 2rem);
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .social-username {
        font-size: 0.5rem;
    }

    .social-section__gallery {
        height: 200px;
    }

    .social-overlay-text {
        font-size: 1rem;
    }

    /* Footer - Extra Small Mobile */
    .footer__nav {
        font-size: 9px !important;
        gap: 15px;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .footer__nav a {
        white-space: nowrap;
        padding: 2px 0;
    }

    .footer__copyright {
        font-size: 11px;
        line-height: 1.6;
        word-break: break-word;
    }
}

/* Notification System - Top Right */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 300px;
    max-width: 500px;
    padding: 1.5rem 2rem;
    background: white;
    border-left: 4px solid;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
}

.notification-error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: unset;
        max-width: unset;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

/* Smooth Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}