@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Elegant headings */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo h1 {
    font-size: 28px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo h1:hover {
    transform: scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.nav-links li a:hover::before {
    left: 100%;
}

.nav-links li a.active,
.nav-links li a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    color: #333;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::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"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.5"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.4"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #666;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
    animation: pulse 2s infinite;
}

.cta-button:hover::before {
    left: 100%;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #ff6b9d;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #ff6b9d;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: #ff6b9d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Services Section */
.services {
    background: #fff;
    padding: 100px 20px;
    position: relative;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.services-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.services-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.services-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    display: block;
}

.services-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.services-item p {
    padding: 0 20px 20px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Ensure no underlines on services item links */
.services-item, .services-item:link, .services-item:visited, .services-item:hover, .services-item:active {
    text-decoration: none !important;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}
.modal-overlay[aria-hidden="false"] {
    display: flex;
}
.modal {
    background: #fff;
    border-radius: 20px;
    max-width: 950px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #c44569;
}
.modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.modal-image-wrap {
    background: #f6f6f6;
}
.modal-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-details {
    padding: 30px;
}
@media (max-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about {
    background: linear-gradient(to bottom, #ff9a9e 0%, #fecfef 100%);
    padding: 150px 20px;
    text-align: center;
    color: #333;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.footer-content {
    margin-top: 64px;
    padding-top: 64px;
    text-align: center;
}

.footer-content p {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 10px 0;
    opacity: 1;
    max-width: none;
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

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

/* Contact Page Styles */
.contact-info {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffeef3, #fff5f8);
}

.contact-center {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.email-section {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.email-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
}

.email-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.email-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #333;
}

.email-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.email-container {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    padding: 25px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
    transition: transform 0.3s ease;
}

.email-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.3);
}

.email-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.email-link {
    font-size: 1.4rem;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
}

.email-link:hover {
    color: #ff6b9d;
    transform: scale(1.05);
}

.contact-decoration {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.nail-emoji {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
    animation-delay: calc(var(--i) * 0.3s);
}

.nail-emoji:nth-child(1) { --i: 0; }
.nail-emoji:nth-child(2) { --i: 1; }
.nail-emoji:nth-child(3) { --i: 2; }

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b9d;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
}

.form-note {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

/* Pricing Section */
.pricing-info {
    background: #f8f9fa;
    padding: 80px 20px;
}

.pricing-info h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.pricing-pyramid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.pyramid-row {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.price-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
}

.price-item.featured {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
    color: #fff;
}

.price-item.featured .price {
    color: #fff;
}

.price-item:hover {
    transform: translateY(-5px);
}

.price-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: inherit;
} 

.price {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

.pricing-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Gallery Styles */
.gallery {
    padding: 80px 20px;
    background: #fff;
}

.gallery-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.placeholder-image {
    height: 300px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.gel-extensions-bg {
    background-image: url('images/gel-extensions.jpg'), linear-gradient(135deg, #ff9a9e, #fecfef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nail-art-bg {
    background-image: url('images/nail-art.jpg'), linear-gradient(135deg, #ff9a9e, #fecfef);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.gel-manicure-bg {
    background-image: url('images/IMG_5599.jpeg'), linear-gradient(135deg, #ff9a9e, #fecfef);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.gallery-item h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.gallery-item p {
    padding: 0 20px 20px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Ensure no underlines on gallery item links */
.gallery-item, .gallery-item:link, .gallery-item:visited, .gallery-item:hover, .gallery-item:active {
    text-decoration: none !important;
}

.gallery-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    color: #666;
}

.gallery-note p {
    margin: 10px 0;
}

.gallery-note strong {
    color: #ff6b9d;
}

/* Enlarged Service Display */
.enlarged-service-display {
    max-width: 1000px;
    margin: 0 auto;
}

.enlarged-service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.enlarged-image {
    height: 500px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #333;
    font-weight: 600;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.enlarged-image:hover {
    transform: scale(1.02);
}

.service-details {
    padding: 20px;
}

.service-details h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.service-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.price-display {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.2);
}

.price-label {
    display: block;
    font-size: 1rem;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    display: block;
}

.book-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    margin-right: 15px;
}

.book-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 157, 0.4);
}

.back-button {
    display: inline-block;
    background: transparent;
    color: #ff6b9d;
    padding: 12px 25px;
    text-decoration: none;
    border: 2px solid #ff6b9d;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #ff6b9d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #ff6b9d, #c44569);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        transition: left 0.3s ease;
        padding-top: 50px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        width: 100%;
        padding: 20px;
        font-size: 1.2rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-links li a:hover {
        background: rgba(255,255,255,0.1);
        transform: none;
        box-shadow: none;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    	
    .placeholder-image {
        height: 250px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .enlarged-service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .enlarged-image {
        height: 350px;
    }
    
    .service-details h2 {
        font-size: 2rem;
    }
}
