/* ============================================
   LUXURY BEAUTY STUDIO - PREMIUM STYLESHEET
   Color Palette: White, Soft Black, Light Gray, Rose Gold/Gold
   ============================================ */

/* CSS Variables */
:root {
    --color-white: #ffffff;
    --color-soft-black: #2c2c2c;
    --color-light-gray: #f5f5f5;
    --color-medium-gray: #e0e0e0;
    --color-dark-gray: #8a8a8a;
    --color-rose-gold: #d4af37;
    --color-gold: #c9a961;
    --color-rose-gold-light: #e8d5a3;
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    --transition: all 0.3s ease;
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-weight: 300;
    color: var(--color-soft-black);
    background-color: var(--color-white);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    animation: pageLoad 0.8s ease-out;
}

/* Animated Elements */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.animate-scale {
    animation: scaleIn 0.6s ease-out;
}

/* Image Loading States */
img {
    transition: opacity 0.5s ease, transform 0.5s ease;
    animation: imageLoad 0.8s ease-out;
}

img.loading {
    opacity: 0;
    filter: blur(5px);
}

img.loaded {
    opacity: 1;
    filter: blur(0);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-soft-black);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.logo-text {
    color: var(--color-soft-black);
}

.logo-accent {
    color: var(--color-rose-gold);
}

/* Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-soft-black);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 300;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-rose-gold);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--color-rose-gold);
    color: var(--color-white);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 400;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Messages */
.messages-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.message {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 5px;
    box-shadow: var(--shadow-medium);
    animation: slideIn 0.3s ease;
}

.message-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--color-rose-gold);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--color-soft-black);
    border: 1px solid var(--color-soft-black);
}

.btn-secondary:hover {
    background: var(--color-soft-black);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-rose-gold);
    border: 1px solid var(--color-rose-gold);
}

.btn-outline:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 2rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-soft-black) 0%, var(--color-rose-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-dark-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.5s forwards;
}

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-strong);
    animation: imageLoad 1s ease-out 0.7s both;
}

.hero-placeholder {
    width: 100%;
    max-width: 500px;
    height: 600px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8d5a3 50%, #d4af37 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
    font-style: italic;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear;
    background-size: 2000px 100%;
}

.hero-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.hero-placeholder span {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    color: var(--color-soft-black);
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-soft-black);
}

.intro-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-dark-gray);
}

/* Services Grid */
.services-preview {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

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

.service-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    animation: scaleIn 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-image,
.service-image-placeholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8d5a3 50%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
    font-style: italic;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear;
    background-size: 2000px 100%;
}

.service-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.service-image-placeholder span {
    position: relative;
    z-index: 1;
}

.service-card-content {
    padding: 2rem;
}

.service-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-soft-black);
}

.service-card-description {
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card-link {
    color: var(--color-rose-gold);
    font-weight: 400;
    display: inline-block;
}

.service-card-link:hover {
    color: var(--color-gold);
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Gallery */
.gallery-preview {
    padding: 5rem 0;
    background: var(--color-white);
}

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

.gallery-item {
    animation: scaleIn 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

.gallery-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
}

.gallery-caption {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    animation: slideInLeft 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.4s;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.star {
    color: var(--color-medium-gray);
    font-size: 1.2rem;
}

.star.filled {
    color: var(--color-rose-gold);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-soft-black);
}

.testimonial-author {
    font-weight: 500;
    color: var(--color-dark-gray);
}

/* Artist Section */
.artist-section {
    padding: 5rem 0;
    background: var(--color-white);
}

.artist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.artist-image {
    width: 100%;
}

.artist-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    animation: scaleIn 0.8s ease-out;
}

.artist-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8d5a3 50%, #d4af37 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
    font-style: italic;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear;
    background-size: 2000px 100%;
}

.artist-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.artist-placeholder span {
    position: relative;
    z-index: 1;
}

.artist-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--color-light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    animation: slideInLeft 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-soft-black);
}

.faq-answer {
    color: var(--color-dark-gray);
    line-height: 1.8;
}

/* Page Header */
.page-header {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-light-gray) 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    font-weight: 300;
}

/* Services Page */
.services-page {
    padding: 4rem 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    animation: slideInRight 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

.service-item:hover {
    box-shadow: var(--shadow-medium);
}

.service-item-image img,
.service-item-image .service-image-placeholder {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.service-item-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-item-description {
    color: var(--color-dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-item-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.service-price {
    color: var(--color-rose-gold);
    font-weight: 500;
}

.service-duration {
    color: var(--color-dark-gray);
}

/* Service Detail */
.service-detail {
    padding: 4rem 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.service-detail-image img,
.service-detail-image .service-image-placeholder {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-medium-gray);
}

.service-price-large {
    font-size: 2rem;
    color: var(--color-rose-gold);
    font-weight: 500;
}

.service-duration-large {
    font-size: 1.1rem;
    color: var(--color-dark-gray);
}

.service-description-full,
.service-benefits,
.service-aftercare {
    margin-bottom: 2.5rem;
}

.service-description-full h2,
.service-benefits h2,
.service-aftercare h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.benefits-list,
.aftercare-list {
    list-style: none;
    padding-left: 0;
}

.benefits-list li,
.aftercare-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark-gray);
}

.benefits-list li::before,
.aftercare-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-rose-gold);
    font-weight: bold;
}

.service-cta {
    margin-top: 2rem;
}

.service-portfolio {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-medium-gray);
}

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

.portfolio-item {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    animation: scaleIn 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.portfolio-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.portfolio-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-title {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

/* Gallery Page */
.gallery-page {
    padding: 4rem 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-medium-gray);
    border-radius: 30px;
    font-weight: 300;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-rose-gold);
    color: var(--color-white);
    border-color: var(--color-rose-gold);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.gallery-item-full {
    animation: scaleIn 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.gallery-before-after-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.gallery-image-wrapper {
    position: relative;
}

.gallery-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.gallery-image-full {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item-info {
    text-align: center;
}

.gallery-item-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-item-service {
    color: var(--color-dark-gray);
    font-size: 0.9rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
}

.pagination-link {
    padding: 0.7rem 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-medium-gray);
    border-radius: 5px;
    transition: var(--transition);
}

.pagination-link:hover {
    background: var(--color-rose-gold);
    color: var(--color-white);
    border-color: var(--color-rose-gold);
}

.pagination-info {
    color: var(--color-dark-gray);
}

/* About Page */
.about-page {
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-dark-gray);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    padding-left: 0;
}

.about-features li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark-gray);
}

.about-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-rose-gold);
    font-size: 1.5rem;
}

.about-image {
    width: 100%;
}

.about-studio-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    animation: scaleIn 0.8s ease-out;
}

.about-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8d5a3 50%, #d4af37 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
    font-style: italic;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear;
    background-size: 2000px 100%;
}

.about-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.about-placeholder span {
    position: relative;
    z-index: 1;
}

.certificates-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-medium-gray);
}

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

.certificate-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    animation: scaleIn 0.6s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.certificate-item:nth-child(1) { animation-delay: 0.1s; }
.certificate-item:nth-child(2) { animation-delay: 0.2s; }
.certificate-item:nth-child(3) { animation-delay: 0.3s; }
.certificate-item:nth-child(4) { animation-delay: 0.4s; }

.certificate-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-rose-gold);
}

.certificate-item p {
    color: var(--color-dark-gray);
    line-height: 1.7;
}

/* Blog */
.blog-page {
    padding: 4rem 0;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    animation: slideInRight 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-thumbnail,
.blog-thumbnail-placeholder {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8d5a3 50%, #d4af37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
    font-style: italic;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear;
    background-size: 2000px 100%;
}

.blog-thumbnail-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.blog-thumbnail-placeholder span {
    position: relative;
    z-index: 1;
    padding: 1rem;
    text-align: center;
}

.blog-card-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--color-light-gray);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--color-dark-gray);
    margin-bottom: 1rem;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-card-title a {
    color: var(--color-soft-black);
}

.blog-card-title a:hover {
    color: var(--color-rose-gold);
}

.blog-card-excerpt {
    color: var(--color-dark-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-date {
    color: var(--color-dark-gray);
    font-size: 0.9rem;
}

.blog-read-more {
    color: var(--color-rose-gold);
    font-weight: 400;
}

.blog-read-more:hover {
    color: var(--color-gold);
}

.blog-detail {
    padding: 4rem 0;
}

.blog-meta-header {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.blog-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.blog-detail-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-dark-gray);
}

.blog-detail-text p {
    margin-bottom: 1.5rem;
}

.blog-related {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--color-medium-gray);
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: 2rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-soft-black);
}

.contact-link-large {
    color: var(--color-rose-gold);
    font-size: 1.1rem;
    font-weight: 400;
}

.contact-link-large:hover {
    color: var(--color-gold);
}

.contact-address {
    color: var(--color-dark-gray);
    line-height: 1.8;
}

.contact-hours {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.contact-hours h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-hours p {
    color: var(--color-dark-gray);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: var(--color-light-gray);
    padding: 3rem;
    border-radius: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-medium-gray);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    background: var(--color-white);
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-rose-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.contact-map {
    margin-top: 4rem;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
    padding: 2rem;
}

.map-overlay p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.map-overlay .map-note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-style: italic;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8d5a3 50%, #d4af37 100%);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-dark-gray);
    position: relative;
    overflow: hidden;
    animation: shimmer 3s infinite linear;
    background-size: 2000px 100%;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

.map-placeholder p {
    position: relative;
    z-index: 1;
}

.map-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

/* Booking Page */
.booking-page {
    padding: 4rem 0;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-dark-gray);
    margin-bottom: 2rem;
}

.booking-benefits,
.booking-notes {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.booking-benefits h3,
.booking-notes h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.booking-benefits ul {
    list-style: none;
    padding-left: 0;
}

.booking-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark-gray);
}

.booking-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-rose-gold);
    font-weight: bold;
}

.booking-notes p {
    color: var(--color-dark-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.booking-form-wrapper {
    background: var(--color-light-gray);
    padding: 3rem;
    border-radius: 10px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--color-soft-black);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-rose-gold-light) 0%, var(--color-rose-gold) 100%);
    text-align: center;
    color: var(--color-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background: var(--color-white);
    color: var(--color-rose-gold);
}

.cta-section .btn-primary:hover {
    background: var(--color-light-gray);
}

/* Footer */
.footer {
    background: var(--color-soft-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

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

.footer-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-rose-gold);
}

.footer-text {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-rose-gold);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--color-rose-gold);
}

.contact-icon {
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.social-link:hover {
    color: var(--color-rose-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Utility Classes */
.no-content {
    text-align: center;
    padding: 3rem;
    color: var(--color-dark-gray);
    font-style: italic;
    animation: fadeIn 0.8s ease-out;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

/* Hover Effects with Animation */
.service-card:hover,
.blog-card:hover,
.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* Smooth Image Transitions */
.service-image,
.gallery-image,
.portfolio-image,
.blog-thumbnail {
    transition: transform 0.5s ease, filter 0.3s ease;
}

.service-card:hover .service-image,
.blog-card:hover .blog-thumbnail,
.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Floating Animation for Icons */
.contact-icon {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

/* Page Header Animation */
.page-header {
    animation: fadeInUp 1s ease-out;
}

/* Section Title Animation */
.section-title {
    animation: fadeInUp 0.8s ease-out;
    opacity: 0;
    animation-fill-mode: forwards;
}

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

/* Advanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Loading Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Page Load Animation */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image Loading Animation */
@keyframes imageLoad {
    from {
        opacity: 0;
        filter: blur(5px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
    /* Navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-placeholder {
        height: 300px;
    }
    
    /* Sections */
    .section-title {
        font-size: 2rem;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Service Item */
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item-image {
        order: -1;
    }
    
    /* Service Detail */
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Artist Section */
    .artist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artist-placeholder {
        height: 300px;
    }
    
    /* Gallery */
    .gallery-before-after {
        grid-template-columns: 1fr;
    }
    
    .gallery-before-after-full {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-full {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-placeholder {
        height: 300px;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Booking */
    .booking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Page Title */
    .page-title {
        font-size: 2rem;
    }
    
    /* Container */
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper,
    .booking-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
