/* ========================================
   Mirella de Mar - Portfolio Website
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Dancing+Script:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Cormorant+Infant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=block');

/* Local Pretty On The Inside Font */
@font-face {
    font-family: 'POTI';
    src: url('../fonts/poti.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* First Crush Font */
@font-face {
    font-family: 'First Crush';
    src: url('../fonts/First Crush.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Latchboy Font */
@font-face {
    font-family: 'Latchboy';
    src: url('../fonts/Latchboy.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Lollipop Font */
@font-face {
    font-family: 'Lollipop';
    src: url('../fonts/Lollipop.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* Variables CSS */
:root {
    --color-pink: #f4c2c2;
    --color-pink-light: #ffe6e6;
    --color-pink-deep: #ffb7c5;
    --color-pink-dark: #e89aa0;
    --color-gold: #1a1a1a;
    --color-gold-light: #3a3a3a;
    --color-gold-dark: #000000;
    --color-text: #2a2a2a;
    --color-text-light: #5a5a5a;
    --color-cream: #fff9f5;
    --color-white: #ffffff;
    --color-rose: #ffc0cb;
    --color-black: #1a1a1a;
    
    --font-logo: 'Cormorant Infant', serif;
    --font-menu: 'Cormorant Infant', serif;
    --font-title: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: visible;
    min-height: 100vh;
    
    background-image: url('../images/background/GMICol_Image_Hard-Sketch_2024-08-02-15h29m02s.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-cream);
}

/* Overlay suave para legibilidad */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 249, 245, 0.4);
    z-index: -1;
    pointer-events: none;
}

/* ========================================
   CUSTOM CURSOR - Pink Arrow
   ======================================== */

* {
    cursor: url('../images/cursor/cursor-pink.svg'), auto !important;
}

a, button, .header-action, .header-menu a, .nav-link, .category-card, .folder-card, .gallery-item, .owl-item, .social-link, .submit-btn, .lightbox-close {
    cursor: url('../images/cursor/cursor-pink.svg'), pointer !important;
}

/* ========================================
   HEADER - Nuevo diseño
   ======================================== */

.header-wrap {
    position: relative;
    z-index: 1000;
    padding: 60px 0 20px;
}

.header-top {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    min-height: 170px;
}

.header-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header-logo a {
    font-family: 'POTI', cursive !important;
    font-size: 0 !important;
    font-weight: normal !important;
    color: #2a2a2a !important;
    text-decoration: none;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    line-height: 1;
    white-space: nowrap;
    padding: 0;
    /* Efectos analógicos */
    filter: contrast(0.9) brightness(0.95);
    opacity: 0.9;
    transform: rotate(-1.5deg);
    transition: all 0.3s ease;
}

.header-logo a img {
    display: block;
    width: clamp(300px, 42vw, 560px);
    height: auto;
    max-width: 100%;
}

.header-logo a:hover {
    opacity: 1;
    filter: contrast(1) brightness(1);
    transform: rotate(0deg);
}

.header-actions {
    display: flex;
    gap: 20px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header-action:hover {
    color: #ff66b2;
}

.header-action img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* ========================================
   HEADER MENU - BabySSB 3D Transparent Style
   ======================================== */

.header-menu {
    display: flex;
    justify-content: center;
    gap: 0;
    width: 90%;
    max-width: 1200px;
    margin: 25px auto 0;
    padding: 0;
    background: rgba(255, 228, 233, 0.5);
    border: none;
    border-radius: 0;
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -3px 0 rgba(255, 182, 193, 0.4);
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 20%, black 80%, transparent 100%);
}

.header-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.3) 0%, 
        transparent 50%);
    pointer-events: none;
}

.header-menu a {
    font-family: 'Cormorant Infant', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #7a5a6a;
    text-decoration: none;
    padding: 14px 40px;
    letter-spacing: 1px;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.8),
        0 3px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.header-menu a:last-child {
    border-right: none;
}

.header-menu a:hover {
    color: #c67fa8;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.9),
        0 4px 8px rgba(198, 127, 168, 0.3);
    transform: translateY(-2px);
}

.header-menu a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(198, 127, 168, 0.6), 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-menu a:hover::after {
    opacity: 1;
}

.header-wrap .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar Site - Barra superior */
.navbar-site {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0 15px;
    position: relative;
}

/* Language - Izquierda */
.navbar-site-lang_search {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
}

.navbar-site-lang {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-menu);
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar-site-lang i {
    color: var(--color-pink-deep);
    font-size: 1rem;
}

/* LOGO CENTRADO - Fuente delicada/fantasy */
.navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    top: 10px;
}

.navbar-brand a {
    text-decoration: none;
    display: block;
    position: relative;
}

.navbar-brand .logo-image {
    display: block;
    width: min(44vw, 420px);
    height: auto;
    max-width: 100%;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-text);
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    line-height: 1;
    background: transparent;
}

/* Contact Button - Derecha */
.navbar-site-online {
    margin: 0;
    padding-top: 10px;
}

.navbar-site-online a {
    display: inline-block;
    color: var(--color-text);
    text-decoration: none;
    padding: 12px 30px;
    font-family: var(--font-menu);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-site-online a:hover {
    color: var(--color-pink-deep);
}

/* Mobile Toggle */
.header-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.header-nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition-smooth);
}

/* ========================================
   HOME SLIDER - Native Horizontal Scroll
   ======================================== */

.keyvisual-area {
    padding: 60px 0 80px;
    background: transparent;
    position: relative;
    width: 100%;
}

.home-slider {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff69b4 rgba(255, 182, 193, 0.3);
    cursor: grab;
    position: relative;
    white-space: nowrap;
    padding: 20px 0;
}

.home-slider-track {
    display: inline-flex;
    gap: 0;
    padding: 0;
    height: 400px;
}

.home-slide {
    flex-shrink: 0;
    width: 350px;
    height: 350px;
    display: inline-block;
    vertical-align: top;
}

.home-slide a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.home-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Owl Carousel - Square & Tight */
.series-area .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Title */
.series-title {
    text-align: center;
    margin-bottom: 50px;
}

.series-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 2px;
}

/* Categories Grid MAXIMALIST */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.category-card {
    display: block;
    text-decoration: none;
    position: relative;
    transition: var(--transition-smooth);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-frame {
    background: var(--color-white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.category-card:hover .category-frame {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.category-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-cream);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-info {
    padding: 15px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 1px;
}

.category-desc {
    font-family: var(--font-menu);
    font-size: 0.75rem;
    color: var(--color-text-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ========================================
   GALLERY SECTIONS
   ======================================== */

.gallery-section {
    padding: 200px 0 100px;
    min-height: 100vh;
}

.project-unavailable {
    max-width: 680px;
    margin: 80px auto;
    padding: 40px 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(198, 127, 168, 0.35);
    box-shadow: 0 12px 35px rgba(64, 46, 39, 0.12);
}

.project-unavailable p {
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.project-unavailable a {
    color: #7a5a6a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.gallery-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.back-link {
    margin-bottom: 30px;
}

.back-link a {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.back-link a:hover {
    color: #ff66b2;
}

/* Folders Grid */
.folders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.folder-card {
    display: block;
    text-decoration: none;
    text-align: center;
    transition: var(--transition-smooth);
}

.folder-card:hover {
    transform: translateY(-5px);
}

.folder-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.folder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.folder-name {
    margin-top: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--color-text);
    letter-spacing: 1px;
}

.gallery-section p {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--color-text-light);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-3px);
}

.gallery-frame {
    background: var(--color-white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-frame {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
    padding: 0 8px;
    color: var(--color-gold);
    font-size: 1rem;
    z-index: 10;
}

.gallery-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-cream);
    position: relative;
}

.gallery-image::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 2;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

.gallery-caption {
    padding: 15px;
    text-align: center;
    background: linear-gradient(to bottom, var(--color-white), var(--color-pink-light));
    border-top: 2px dashed rgba(212, 175, 55, 0.3);
}

.gallery-caption-text {
    font-family: var(--font-menu);
    font-size: 1rem;
    color: var(--color-text);
    font-style: italic;
    letter-spacing: 1px;
}

/* ========================================
   LIGHTBOX
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 74, 58, 0.95);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
    border: 20px solid #ffb7c5;
    box-shadow: 
        0 0 0 5px #000000,
        0 0 0 10px #ffb7c5,
        0 30px 80px rgba(0, 0, 0, 0.5);
    animation: lightboxAppear 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.lightbox-content video {
    display: block;
    width: min(90vw, 1200px);
    max-height: 80vh;
    object-fit: contain;
    background: #000;
}

.lightbox-content [hidden] {
    display: none;
}

@keyframes lightboxAppear {
    from {
        opacity: 0;
        transform: scale(0.8) rotateY(20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--color-white);
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: rotate(90deg) scale(1.1);
}

/* ========================================
   ABOUT PAGE - Full Image Centered
   ======================================== */

.about-fullimage-section {
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.about-image-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.contact-text {
    font-family: 'POTI', cursive;
    text-align: center;
    color: #2a2a2a;
    text-shadow: 
        2px 2px 8px rgba(255, 255, 255, 0.9),
        -1px -1px 0 rgba(255, 255, 255, 0.5);
}

.contact-title {
    font-size: 5rem;
    margin-bottom: 30px;
}

.contact-info {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.contact-info a {
    color: #c67fa8;
    text-decoration: none;
}

.contact-info a:hover {
    color: #ff69b4;
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   PROJECT DETAIL PAGES - Horizontal Slider
   ======================================== */

.project-page {
    overflow-x: hidden;
}

.project-slider-area {
    width: 100vw;
    height: calc(100vh - 80px);
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.project-title {
    text-align: center;
    font-family: 'Cormorant Infant', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #6d4c5a;
    letter-spacing: 3px;
    text-transform: capitalize;
    margin-bottom: 20px;
    z-index: 10;
}

.project-slider {
    width: 100%;
    height: 92vh;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff69b4 rgba(255, 182, 193, 0.3);
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.project-slide {
    flex-shrink: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: zoom-in;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-slide:hover {
    transform: scale(1.03);
}

.project-slide img,
.project-slide video {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.project-slider::-webkit-scrollbar {
    height: 8px;
}

.project-slider::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.3);
    border-radius: 10px;
}

.project-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 10px;
}

.project-slider::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff1493, #ff69b4);
}

/* ========================================
   CONTACT PAGE - Background Image with Form Overlay
   ======================================== */

.contact-bg-section {
    position: relative;
    min-height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    overflow: hidden;
}

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

.contact-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay-form {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 600px;
}

.contact-form-transparent {
    width: 100%;
}

.contact-form-transparent .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-transparent .form-group {
    margin-bottom: 20px;
}

.contact-form-transparent input,
.contact-form-transparent textarea {
    width: 100%;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(122, 90, 106, 0.6);
    font-family: 'Cormorant Infant', serif;
    font-size: 1.3rem;
    color: #7a5a6a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.contact-form-transparent input::placeholder,
.contact-form-transparent textarea::placeholder {
    color: #7a5a6a;
    opacity: 0.8;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.contact-form-transparent input:focus,
.contact-form-transparent textarea:focus {
    outline: none;
    border-bottom-color: #c67fa8;
    background: rgba(255, 255, 255, 0.1);
}

.contact-form-transparent textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn-png {
    display: inline-block;
    padding: 15px 50px;
    background: transparent;
    border: 2px solid rgba(122, 90, 106, 0.6);
    border-radius: 30px;
    font-family: 'Cormorant Infant', serif;
    font-size: 1.3rem;
    color: #7a5a6a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn-png:hover {
    border-color: #c67fa8;
    color: #c67fa8;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive for Contact */
@media (max-width: 600px) {
    .contact-form-transparent .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.contact-intro {
    text-align: center;
    font-size: 1.3rem !important;
    margin-bottom: 50px !important;
}

.contact-form {
    background: var(--color-white);
    padding: 50px;
    border: 5px double var(--color-gold);
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(64, 46, 39, 0.15),
        0 0 0 1px rgba(212, 175, 55, 0.2);
    position: relative;
}

.contact-form::before {
    content: '✉';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-rose));
    border: 3px solid var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-text);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    font-family: var(--font-menu);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 10px;
    padding-left: 10px;
    border-left: 4px solid var(--color-gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    background: var(--color-cream);
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--color-pink-deep), var(--color-rose));
    color: var(--color-text);
    border: 3px solid var(--color-gold);
    border-radius: 30px;
    font-family: var(--font-menu);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.25);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: var(--color-text);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER - MAXIMALIST
   ======================================== */

footer {
    background: linear-gradient(to bottom,
        rgba(255, 249, 245, 0.95),
        rgba(244, 194, 194, 0.2));
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px 30px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.footer-text {
    font-family: var(--font-menu);
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-light);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* ========================================
   FOOTER SOCIAL LINKS - BabySSB 3D Transparent Style
   ======================================== */

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 228, 233, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    color: #7a5a6a;
    text-decoration: none;
    font-family: 'Cormorant Infant', serif;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.8),
        0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(255, 182, 193, 0.4);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.social-links a:hover {
    color: #c67fa8;
    background: rgba(255, 228, 233, 0.7);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.15),
        0 12px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -2px 0 rgba(255, 182, 193, 0.4);
}
    font-family: var(--font-menu);
    font-size: 0.9rem;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.footer-copy {
    font-family: var(--font-menu);
    font-size: 0.8rem;
    color: var(--color-text-light);
    letter-spacing: 2px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px dashed rgba(212, 175, 55, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .logo-text {
        font-size: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .header-wrap {
        padding-top: 28px;
    }

    .header-top {
        min-height: 100px;
        padding: 0 16px;
    }

    .header-logo {
        max-width: calc(100% - 32px);
    }

    .header-logo a {
        font-size: 3.2rem !important;
        padding: 10px 0;
    }

    .header-logo a img {
        width: min(82vw, 360px);
    }

    .header-actions {
        gap: 8px;
    }

    .header-action {
        gap: 4px;
        font-size: 0.95rem;
    }

    .header-action img {
        width: 24px;
        height: 24px;
    }

    .header-menu {
        justify-content: flex-start;
        width: 100%;
        max-width: none;
        margin-top: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .header-menu::-webkit-scrollbar {
        display: none;
    }

    .header-menu a {
        flex: 0 0 auto;
        padding: 12px 20px;
        font-size: 1.05rem;
    }

    .navbar-brand .logo-image {
        width: min(78vw, 340px);
    }

    .cursor-dot {
        display: none;
    }
    
    .header-nav-toggle {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(to bottom, var(--color-white), var(--color-cream));
        border-left: 5px double var(--color-gold);
        padding: 120px 30px 30px;
        transition: var(--transition-smooth);
        z-index: 999;
        overflow-y: auto;
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-collapse.active {
        right: 0;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-item:not(:last-child)::after {
        display: none;
    }
    
    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        text-align: center;
    }
    
    .navbar-site-online {
        display: none;
    }
    
    .navbar-site-lang_search {
        display: none;
    }
    
    .logo-text {
    font-size: 7rem;
    }
    
    .logo-text::before,
    .logo-text::after {
        display: none;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .category-name {
        font-size: 1.3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-portrait {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .keyvisual-area {
        padding-top: 180px;
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto 60px;
    }
    
    .category-name {
        font-size: 1.5rem;
    }
    
    .series-title h2 {
        font-size: 2.5rem;
    }
    
    .footer-logo {
        font-size: 2.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   SECTION PAGES - Full Screen Slider Style
   ======================================== */

.section-page {
    overflow-x: hidden;
}

.owl-section-slider .owl-item {
    opacity: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.section-item {
    position: relative;
    display: block;
    padding: 0;
}

.section-link {
    display: block;
    text-decoration: none;
    position: relative;
}

.star-btn {
    width: 60px;
    height: 60px;
    background: #ff69b4;
    border: none;
    cursor: pointer;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    -webkit-clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    transition: transform .15s ease, filter .15s ease;
}

.star-btn:hover {
    transform: scale(1.12);
    filter: brightness(1.15);
}

.section-slider-area .section-title {
    position: absolute;
    top: 20px;
    right: 15px;
    z-index: 999;
    transform: rotate(90deg);
    transform-origin: right center;
    font-family: 'Cormorant Infant', serif;
    font-size: 0.8rem;
    color: #000 !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    pointer-events: none;
    background: transparent;
}

@media (max-width: 768px) {
    .star-btn { width: 45px; height: 45px; font-size: 22px; }
}

/* Native Horizontal Scrollbar for Section Sliders */
.section-slider-area {
    width: 100vw;
    height: 100vh;
    padding: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.owl-section-slider {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #ff69b4 rgba(255, 182, 193, 0.3);
    padding-bottom: 25px;
}

.owl-section-slider > .owl-stage-outer {
    overflow: visible !important;
}

.owl-section-slider > .owl-stage-outer > .owl-stage {
    display: flex;
    width: max-content;
}

.owl-section-slider > .owl-stage-outer > .owl-stage > .owl-item {
    flex-shrink: 0;
}

/* Override Owl Carousel transform that breaks position:fixed */
.owl-section-slider > .owl-stage-outer,
.owl-section-slider > .owl-stage-outer > .owl-stage,
.owl-section-slider .owl-item {
    -webkit-transform: none !important;
    transform: none !important;
}

/* Scrollbar Styling */
.owl-section-slider::-webkit-scrollbar {
    height: 8px;
}

.owl-section-slider::-webkit-scrollbar-track {
    background: rgba(255, 182, 193, 0.3);
    border-radius: 10px;
}

.owl-section-slider::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    border-radius: 10px;
}

.owl-section-slider::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff1493, #ff69b4);
}

.section-image {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
}

.section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

.section-link:hover .section-image img {
    transform: scale(1.02);
    filter: brightness(1.05);
}

/* Video Styles for Visuals Section */
.section-video {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    background: #000;
}

.section-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-link:hover .section-video video {
    filter: brightness(1.05);
}

/* Responsive for Videos */
@media (max-width: 768px) {
    .section-video {
        height: 70vh;
    }
}

.section-caption {
    text-align: center;
    font-family: 'Cormorant Infant', 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6d4c5a;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin: 10px 0 0;
    text-shadow: none;
}

/* Section Slider Dots - Hidden */
.owl-section-slider .owl-dots {
    display: none;
}

/* Responsive for Section Pages */
@media (max-width: 768px) {
    .section-image {
        height: 70vh;
    }
    
    .section-caption {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
}

/* Video Gallery Styles */
.video-gallery-section {
    padding: 80px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-item {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
    border-radius: 8px;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive for Videos */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .video-item {
        aspect-ratio: 16/9;
    }
}
