/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="scissors" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M10,10 L15,15 M15,10 L10,15 M25,25 L35,35 M30,20 L40,30" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23scissors)"/></svg>');
    opacity: 0.1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    text-decoration: none;
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(231, 76, 60, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
}

/* ===== NAVIGATION ===== */
.nav {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav a:hover,
.nav a.active {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    object-fit: cover;
    display: block;
}


.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.2rem;
}

/* ===== SERVICES SECTION ===== */

/* Appointment Info Banner */
.appointment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.appointment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: transform 0.3s ease;
}

.appointment-card.walk-in {
    border-color: #27ae60;
    background: linear-gradient(135deg, #ffffff, #f8fff9);
}

.appointment-card.booking-required {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #ffffff, #fff8f8);
}

.appointment-card:hover {
    transform: translateY(-5px);
}

.appointment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.appointment-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.appointment-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.appointment-card p:last-child {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.service-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
}

/* Pricing Info */
.pricing-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.pricing-item strong {
    color: #2c3e50;
}

/* ===== INSTAGRAM GALLERY SECTION ===== */
.instagram-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #E4405F;
}

.instagram-header h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.instagram-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instagram-placeholder:hover {
    transform: scale(1.05);
}

.instagram-post {
    text-align: center;
    color: white;
}

.post-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instagram-post p {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.instagram-cta {
    text-align: center;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-logo {
    font-size: 1.3rem;
}

.instagram-note {
    margin-top: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Social Media Benefits */
.social-info {
    margin-top: 3rem;
}

.social-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* ===== OPENING HOURS ===== */
.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hours-grid {
    display: grid;
    gap: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.time {
    color: #27ae60;
    font-weight: 500;
}

.closed {
    color: #e74c3c;
    font-style: italic;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 1rem;
    width: 30px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-cta {
    display: block;
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.booking-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    .header h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .header .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav ul {
        gap: 0.5rem;
        justify-content: space-around;
    }
    
    .nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
        font-size: 3rem;
    }
    
    .about-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .appointment-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .appointment-card {
        padding: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .hours-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .hours-row {
        padding: 0.8rem 0;
    }
    
    .day {
        font-size: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .cta-button,
    .nav a,
    .service-card {
        min-height: 44px;
    }
    
    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
}

/* Landscape phone optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        padding: 1.5rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="scissors" patternUnits="userSpaceOnUse" width="50" height="50"><path d="M10,10 L15,15 M15,10 L10,15 M25,25 L35,35 M30,20 L40,30" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23scissors)"/></svg>');
    opacity: 0.1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.header .subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    text-decoration: none;
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(231, 76, 60, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); }
}

/* ===== NAVIGATION ===== */
.nav {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
}

.nav a:hover,
.nav a.active {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #bdc3c7, #95a5a6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.2rem;
}

/* ===== SERVICES SECTION ===== */

/* Appointment Info Banner */
.appointment-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.appointment-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    transition: transform 0.3s ease;
}

.appointment-card.walk-in {
    border-color: #27ae60;
    background: linear-gradient(135deg, #ffffff, #f8fff9);
}

.appointment-card.booking-required {
    border-color: #e74c3c;
    background: linear-gradient(135deg, #ffffff, #fff8f8);
}

.appointment-card:hover {
    transform: translateY(-5px);
}

.appointment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.appointment-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.appointment-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.appointment-card p:last-child {
    color: #7f8c8d;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #3498db;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.service-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e74c3c;
}

/* Pricing Info */
.pricing-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.pricing-info h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pricing-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    text-align: left;
}

.pricing-item strong {
    color: #2c3e50;
}

/* ===== INSTAGRAM GALLERY SECTION ===== */
.instagram-showcase {
    max-width: 800px;
    margin: 0 auto;
}

.instagram-header {
    text-align: center;
    margin-bottom: 3rem;
}

.instagram-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #E4405F;
}

.instagram-header h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.instagram-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.instagram-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.instagram-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instagram-placeholder:hover {
    transform: scale(1.05);
}

.instagram-post {
    text-align: center;
    color: white;
}

.post-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.instagram-post p {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.instagram-cta {
    text-align: center;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #E4405F, #C13584, #833AB4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
    color: white;
    text-decoration: none;
}

.instagram-logo {
    font-size: 1.3rem;
}

.instagram-note {
    margin-top: 1rem;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Social Media Benefits */
.social-info {
    margin-top: 3rem;
}

.social-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-item strong {
    color: #2c3e50;
    font-size: 1.1rem;
}

/* ===== OPENING HOURS ===== */
.hours-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hours-grid {
    display: grid;
    gap: 1.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.time {
    color: #27ae60;
    font-weight: 500;
}

.closed {
    color: #e74c3c;
    font-style: italic;
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 1rem;
    width: 30px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Ausnahme für CTA-Button in Contact-Bereich */
.contact-info .cta-button {
    color: white !important;
}

.contact-info .cta-button:hover {
    color: white !important;
    text-decoration: none !important;
}

.contact-cta {
    display: block;
    text-align: center;
    margin: 2rem 0 1rem 0;
}

.booking-note {
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 2rem 0;
    }
    
    .header h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .header .subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
    
    .nav {
        padding: 0.5rem 0;
    }
    
    .nav ul {
        gap: 0.5rem;
        justify-content: space-around;
    }
    
    .nav a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
        font-size: 3rem;
    }
    
    .about-text {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .appointment-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .appointment-card {
        padding: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .instagram-preview {
        padding: 1.5rem;
    }
    
    .instagram-header h3 {
        font-size: 1.5rem;
    }
    
    .instagram-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-benefits {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .hours-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .header .subtitle {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-name {
        font-size: 1.1rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .hours-container {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .hours-row {
        padding: 0.8rem 0;
    }
    
    .day {
        font-size: 1rem;
    }
    
    .contact-item {
        margin-bottom: 1rem;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) {
    .cta-button,
    .nav a,
    .service-card {
        min-height: 44px;
    }
    
    .nav a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-card:hover {
        transform: none;
    }
    
    .gallery-item:hover {
        transform: none;
    }
}

/* Landscape phone optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .header {
        padding: 1.5rem 0;
    }
    
    .section {
        padding: 2rem 0;
    }
}

/* ===== PREISE & HINWEISE – V2 ===== */
.pricing-info.v2{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:2.5rem;
    padding:2.5rem 2rem;
    border-radius:22px;
    background:#fff;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    position:relative;
}
.pricing-info.v2::before{
    content:"";
    position:absolute;
    top:0;left:0;right:0;height:5px;
    background:linear-gradient(90deg,#3498db 0%,#9b59b6 50%,#e74c3c 100%);
    border-top-left-radius:22px;
    border-top-right-radius:22px;
}

/* — Spalten — */
.pricing-col h3{
    font-size:1.45rem;
    color:#2c3e50;
    margin-bottom:1.4rem;
    display:flex;align-items:center;gap:.55rem;
}

/* Vertikale Trennlinie zwischen Spalten */
.pricing-col:first-child {
    position: relative;
}

.pricing-col:first-child::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1.25rem;
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, #e0e6ed 20%, #e0e6ed 80%, transparent 100%);
}

.pi-icon{font-size:1.55rem;line-height:1}
.pi-icon.blue{filter:grayscale(.1)}

/* — Preis-Liste — */
.price-list,
.note-list{list-style:none;margin:0;padding:0}
.price-list li{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    padding:.9rem 1rem;
    border-radius:12px;
    transition:background .2s, box-shadow .25s;
}
.price-list li:not(:last-child){margin-bottom:.4rem}
.price-list li:hover{
    background:#f8f9fa;
    box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.label{font-size:1.05rem;color:#555}
.value{font-weight:700;color:#2c3e50}

/* — Hinweis-Liste — */
.note-list li{
    padding:.85rem 0;
    border-bottom:1px dashed #ebeff2;
    font-size:1.05rem;
    color:#34495e;
    line-height: 1.5;
}
.note-list li:last-child{border:none}

/* — Zusätzliche Styles für Tag-Informationen — */
.day-info {
    font-size: 0.85rem;
    color: #27ae60;
    margin-top: 0.2rem;
    font-weight: 500;
}

.day-info.weekend {
    color: #e74c3c;
}

/* — Responsiv — */
@media(max-width:600px){
    .pricing-info.v2{grid-template-columns:1fr;padding:2rem 1.2rem}
    .price-list li,.note-list li{font-size:1rem}
}

/* Aufzählungspunkte im ganzen Pricing-Container ausblenden */
.pricing-info.v2 ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
