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

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Triangular Mosaic Background */
.background-mosaic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Diagonal Shimmer Effect - Disabled in favor of mosaic light sweep */
.shimmer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    display: none; /* Disabled - replaced with diagonal mosaic light sweep */
}

.shimmer-overlay::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.3) 45%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.3) 55%,
        transparent 60%,
        transparent 100%
    );
    animation: shimmerSweep 3s ease-in-out infinite;
}

@keyframes shimmerSweep {
    0% {
        transform: translate(-50%, -50%);
    }
    100% {
        transform: translate(50%, 50%);
    }
}

/* Landing Section */
.landing-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: linear-gradient(to bottom, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0.7) 100%);
    position: relative;
    z-index: 1;
}

.profile-container {
    text-align: center;
    padding: 2rem;
}

.profile-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    position: relative;
}

/* SVG Bubble Animation */
.bubble-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.bubble-circle {
    transform-origin: center;
}

.bubble1 {
    animation: wobble1 6s ease-in-out infinite, float1 8s ease-in-out infinite;
}

.bubble2 {
    animation: wobble2 7s ease-in-out infinite, float2 9s ease-in-out infinite;
}

.bubble3 {
    animation: wobble3 5s ease-in-out infinite, float3 7s ease-in-out infinite;
}

/* Inner circle with border */
.profile-photo > div {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--bg-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.profile-photo:hover img {
    transform: scale(1.05);
}

/* Wobble animations for bubbles - constantly changing organic movement with 30% amplitude increase */
@keyframes wobble1 {
    0%, 100% {
        transform: scale(1, 1) translate(0, 0);
    }
    25% {
        transform: scale(1.065, 0.935) translate(6.5px, -3.9px);
    }
    50% {
        transform: scale(0.974, 1.104) translate(-3.9px, 6.5px);
    }
    75% {
        transform: scale(1.039, 0.961) translate(-5.2px, -2.6px);
    }
}

@keyframes wobble2 {
    0%, 100% {
        transform: scale(1, 1) translate(0, 0);
    }
    30% {
        transform: scale(0.961, 1.078) translate(-6.5px, 5.2px);
    }
    60% {
        transform: scale(1.052, 0.948) translate(5.2px, -6.5px);
    }
    85% {
        transform: scale(0.987, 1.026) translate(3.9px, 2.6px);
    }
}

@keyframes wobble3 {
    0%, 100% {
        transform: scale(1, 1) translate(0, 0);
    }
    20% {
        transform: scale(1.026, 0.974) translate(5.2px, 3.9px);
    }
    45% {
        transform: scale(0.948, 1.065) translate(-5.2px, -5.2px);
    }
    70% {
        transform: scale(1.065, 0.935) translate(2.6px, -3.9px);
    }
}

/* Float animations for additional organic movement */
@keyframes float1 {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes float2 {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes float3 {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.6;
    }
}

.artist-name {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-tagline {
    font-size: 1.5rem;
    color: var(--light-text);
    font-weight: 300;
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.5);
    padding: 5rem 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
    margin: 2rem 0;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.3;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.about-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Links Section */
.links-section {
    background: transparent;
    padding: 4rem 0;
    position: relative;
    z-index: 1;
    margin: 2rem 0;
}

.links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    z-index: -1;
    opacity: 0;
}

.links-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.links-card {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.link-icon {
    font-size: 1.5rem;
}

/* Gallery Section */
.gallery-section {
    background: rgba(255, 255, 255, 0.5);
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    margin: 2rem 0;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.3;
}

.gallery-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    will-change: transform;
}

.gallery-item:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease, filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}
}

/* Commissions Page Styles */
.commissions-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.commissions-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.commissions-header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.commission-status {
    padding: 3rem 0;
    background: transparent;
}

.status-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    border-left: 5px solid #10b981;
}

.status-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #10b981;
}

.commission-types {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.commission-types h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.commission-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.commission-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
}

.card-body {
    padding: 2rem;
}

.card-body ul {
    list-style: none;
}

.card-body li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.card-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.process-section {
    padding: 5rem 0;
    background: transparent;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step p {
    color: var(--light-text);
}

.terms-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.terms-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.terms-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.terms-column {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.terms-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.terms-column ul {
    list-style: none;
}

.terms-column li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text);
}

.terms-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.terms-notes {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.terms-notes h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.terms-notes ul {
    list-style: none;
}

.terms-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-text);
}

.terms-notes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.contact-button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
        margin-top: 1rem;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
    }

    .artist-name {
        font-size: 2rem;
    }

    .artist-tagline {
        font-size: 1.2rem;
    }

    .profile-photo {
        width: 200px;
        height: 200px;
    }
    
    .bubble-animation {
        width: 300px;
        height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .commissions-header h1 {
        font-size: 2rem;
    }
    
    .about-section h2,
    .links-section h2,
    .gallery-section h2 {
        font-size: 2rem;
    }
    
    .landing-section {
        padding-top: 100px;
    }
}

/* Additional responsive fixes for small screens */
@media (max-width: 480px) {
    .profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .bubble-animation {
        width: 260px;
        height: 260px;
    }
    
    .artist-name {
        font-size: 1.75rem;
    }
    
    .artist-tagline {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .profile-photo {
        width: 250px;
        height: 250px;
    }
    
    .bubble-animation {
        width: 350px;
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Page Load Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation classes */
.animate-fadeIn {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fadeInDown {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-fadeInScale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Initial hidden state for animated elements */
.will-animate {
    opacity: 0;
}

/* Staggered animation delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1s; }
