/* Base styles */
:root {
    --primary: #ffffff;
    --secondary: #333333;
    --accent: #ff4d94;
    --tertiary: #4dffff;
    --bright-yellow: #ffde59;
    --bright-purple: #9b5de5;
    --bright-blue: #00bbf9;
    --bright-green: #00f5d4;
    --instagram: #c13584;
    --facebook: #3b5998;
    --pinterest: #e60023;
    --twitter: #1da1f2;
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --painting-color: #ff4d94;
    --jewelry-color: #00bbf9;
    --photo-color: #ffde59;
    --cursor-paintings: #ff4d94;
    --cursor-jewelry: #00bbf9;
    --cursor-photography: #ffde59;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Dystopian';
    src: url('https://fonts.googleapis.com/css2?family=Space+Mono&display=swap');
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--primary);
    color: var(--secondary);
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    cursor: default;
}

.page-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Artistic background */
.art-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(120deg, rgba(255,222,89,0.1), rgba(155,93,229,0.1), rgba(0,187,249,0.1), rgba(0,245,212,0.1));
    z-index: -2;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

.art-strokes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    background-image: 
        radial-gradient(circle at 20% 30%, var(--bright-purple) 0%, transparent 20%),
        radial-gradient(circle at 80% 40%, var(--bright-blue) 0%, transparent 20%),
        radial-gradient(circle at 40% 80%, var(--bright-green) 0%, transparent 20%),
        radial-gradient(circle at 70% 10%, var(--bright-yellow) 0%, transparent 20%);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

/* Remove custom cursor */
.cursor {
    display: none !important;
}

/* Header */
header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.logo {
    display: block;
    text-decoration: none;
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Language Toggle */
.language-toggle {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.8rem;
}

.language-toggle:hover {
    background: var(--accent);
}

/* Main content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

.full-height {
    height: 100%;
    min-height: calc(100vh - 138px); /* Adjust for header + footer */
}

.hero-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 5vw;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--bright-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Facets - painting, jewelry, photography */
.hero-facets {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
}

.facet {
    flex: 1;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    min-width: 0;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--secondary);
    cursor: pointer;
}

.facet:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.facet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    transition: var(--transition-fast);
}

.facet[data-facet="1"]::before {
    background: var(--painting-color);
}

.facet[data-facet="2"]::before {
    background: var(--jewelry-color);
}

.facet[data-facet="3"]::before {
    background: var(--photo-color);
}

.facet-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.facet:hover .facet-image img {
    transform: scale(1.1);
}

.facet-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.facet-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.facet[data-facet="1"] .facet-icon {
    color: var(--painting-color);
}

.facet[data-facet="2"] .facet-icon {
    color: var(--jewelry-color);
}

.facet[data-facet="3"] .facet-icon {
    color: var(--photo-color);
}

.facet:hover .facet-icon {
    transform: scale(1.1);
}

.facet-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.facet-description {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.visit-link {
    margin-top: auto;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.facet[data-facet="1"]:hover .visit-link {
    color: var(--painting-color);
    opacity: 1;
}

.facet[data-facet="2"]:hover .visit-link {
    color: var(--jewelry-color);
    opacity: 1;
}

.facet[data-facet="3"]:hover .visit-link {
    color: var(--photo-color);
    opacity: 1;
}

.visit-link i {
    transition: var(--transition-fast);
}

.facet:hover .visit-link i {
    transform: translateX(5px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Shop Button Styles */
.shop-btn {
    display: inline-block;
    padding: 12px 40px;
    background: var(--accent);
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(255, 77, 148, 0.3);
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.shop-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 77, 148, 0.4);
    background: var(--bright-purple);
    cursor: pointer;
}

/* Social Button */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: var(--instagram);
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    cursor: pointer;
}

.instagram-btn:hover {
    background: var(--instagram);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(193, 53, 132, 0.3);
    cursor: pointer;
}

/* Footer */
footer {
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary);
    text-align: center;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Media Queries */
@media (max-width: 900px) {
    .hero-facets {
        flex-direction: column;
        align-items: center;
    }
    
    .facet {
        width: 100%;
        max-width: 350px;
    }
    
    .hero-title {
        font-size: 7vw;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 9vw;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-btn, .shop-btn {
    width: 100%;
    }
    
    .full-height {
        min-height: calc(100vh - 120px);
    }
}

/* Gallery Sections */
.gallery-section {
    padding: 50px 5%;
    margin: 30px 0;
    position: relative;
}

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

.section-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
}

.section-description {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

/* Artistic Item Grid */
.art-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.art-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

.art-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.art-item-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-fast);
}

.art-item:hover .art-item-image {
    transform: scale(1.05);
}

.art-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(0);
    transition: var(--transition-fast);
}

.art-item:hover .art-item-overlay {
    transform: translateY(-10px);
}

.art-item-title {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.art-item-category {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Paintings Section */
.paintings-section {
    background: linear-gradient(to right, rgba(255, 77, 148, 0.05), rgba(155, 93, 229, 0.05));
}

.paintings-section .section-title::after {
    background: var(--accent);
}

/* Jewelry Section */
.jewelry-section {
    background: linear-gradient(to right, rgba(0, 187, 249, 0.05), rgba(0, 245, 212, 0.05));
}

.jewelry-section .section-title::after {
    background: var(--bright-blue);
}

/* Photography Section */
.photography-section {
    background: linear-gradient(to right, rgba(255, 222, 89, 0.05), rgba(0, 245, 212, 0.05));
}

.photography-section .section-title::after {
    background: var(--bright-yellow);
}

/* Interactive Canvas */
.interactive-area {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.canvas-container {
    width: 100%;
    height: 300px;
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

#interactive-canvas {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.canvas-instruction {
    text-align: center;
    font-size: 0.9rem;
    color: var(--secondary);
    opacity: 0.7;
}

/* Connect Section */
.connect-section {
    padding: 80px 5%;
    background: white;
    position: relative;
}

.connect-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.connect-social {
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-grid {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
    text-decoration: none;
    width: 200px;
}

.social-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.social-box i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-box.instagram i {
    color: var(--instagram);
}

.social-box span {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.social-box p {
    color: var(--secondary);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 77, 148, 0.2);
}

.form-label {
    position: absolute;
    top: 15px;
    left: 15px;
    pointer-events: none;
    transition: var(--transition-fast);
    color: rgba(0, 0, 0, 0.5);
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    transform: translateY(-25px);
    font-size: 0.85rem;
    color: var(--accent);
}

.btn {
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: none;
    transition: var(--transition-fast);
}

.btn:hover {
    background: var(--bright-purple);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: none;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 100;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    perspective: 1000;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--bright-purple);
    transform: translateY(-5px);
}

/* Mobile menu toggle - hide on desktop */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    background: none;
    border: none;
    cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 99;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 8vw;
    }
    
    .connect-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 10vw;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-btn, .shop-btn {
        width: 100%;
    }
    
    .full-height {
        min-height: calc(100vh - 120px);
    }
    
    /* Show mobile menu toggle on mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hide desktop nav on mobile */
    nav {
        display: none;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    /* Adjust language toggle position on mobile */
    #mobile-language-toggle {
        display: inline-block;
        margin-top: 10px;
    }
}

/* Add cursor pointer to all interactive elements */
a, button, .language-toggle {
    cursor: pointer;
}

/* Ensure cursor is visible */
body {
    cursor: default;
}

/* Make sure custom cursor doesn't interfere with default cursor */
.cursor {
    pointer-events: none !important;
} 