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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 10px 15px;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    gap: 40px;
}

.hero-content {
    color: #fff;
    flex: 1;
    max-width: 600px;
}

.hero-title {
    margin-bottom: 20px;
}

.title-main {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFD700;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.8);
    line-height: 1;
}

.title-sub {
    display: block;
    font-size: 1.8rem;
    font-weight: 400;
    color: #fff;
    margin-top: 5px;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 2rem;
    font-weight: 600;
    color: #FFD700;
    margin: 20px 0 15px 0;
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.7);
}

.hero-featured-image {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.neon-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
}

.neon-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.9);
}

.neon-sign {
    background: linear-gradient(135deg, #4a0e4e, #1a0033);
    border-radius: 20px;
    padding: 40px 30px;
    border: 3px solid #FFD700;
    position: relative;
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.3),
        inset 0 0 20px rgba(74, 14, 78, 0.5);
}

.neon-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff1493;
    text-align: center;
    line-height: 1.2;
    text-shadow: 
        0 0 5px #ff1493,
        0 0 10px #ff1493,
        0 0 15px #ff1493,
        0 0 20px #ff1493;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 5px #ff1493,
            0 0 10px #ff1493,
            0 0 15px #ff1493,
            0 0 20px #ff1493;
    }
    to {
        text-shadow: 
            0 0 10px #ff1493,
            0 0 20px #ff1493,
            0 0 30px #ff1493,
            0 0 40px #ff1493;
    }
}


/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #111;
    color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #ccc;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFD700;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.2rem;
}

.salon-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.gallery-item .salon-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .salon-photo {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.gallery-overlay h3 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-overlay p {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background: #0a0a0a;
    color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.service-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 3rem;
    color: #FFD700;
}

.service-title {
    position: relative;
    z-index: 2;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.service-description {
    position: relative;
    z-index: 2;
    color: #ccc;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    background: #0f0f0f;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.gallery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-card:hover {
    border-color: #FFD700;
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.2);
}

.gallery-card.featured {
    grid-row: span 2;
}

.gallery-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card.featured .gallery-image {
    height: 500px;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 40px 25px 25px;
    transform: translateY(70%);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.gallery-info p {
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

/* Contact Section */
.contact {
    background: #111;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    min-height: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #FFD700;
    transform: translateX(10px);
}

.contact-icon {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #FFD700;
}

.contact-details p {
    color: #ccc;
    margin: 0;
}

.contact-details a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #FFD700;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    height: 400px;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.footer-text {
    color: #FFD700;
    font-style: italic;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* Floating Map Pin */
.floating-map-pin {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-map-pin i {
    font-size: 24px;
    color: #fff;
    transition: transform 0.3s ease;
}

.floating-map-pin:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.6);
}

.floating-map-pin:hover i {
    transform: scale(1.1);
}

.floating-map-pin:active {
    transform: scale(0.95);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 30px;
        padding: 0 30px;
    }
    
    .title-main {
        font-size: 4rem;
    }
    
    .title-sub {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .neon-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .floating-map-pin {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-map-pin i {
        font-size: 20px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 0 20px;
        min-height: calc(100vh - 80px);
        justify-content: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-featured-image {
        flex: none;
        order: -1;
    }

    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.4rem;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .neon-image {
        max-width: 280px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
        font-size: 1.1rem;
    }

    .salon-gallery {
        grid-template-columns: 1fr;
    }
    

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        min-height: auto;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-map iframe {
        height: 300px;
    }

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

    .gallery-card.featured {
        grid-row: span 1;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .floating-map-pin {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-map-pin i {
        font-size: 18px;
    }
    
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-container {
        padding: 20px 15px;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
        margin: 15px 0 10px 0;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-button {
        padding: 16px 40px;
        font-size: 1.1rem;
        min-height: 48px;
    }

    .neon-image {
        max-width: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 25px;
        margin-bottom: 10px;
    }
    
    .service-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .contact-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 10px;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }
    
    .contact-details h3 {
        margin-bottom: 10px;
        font-size: 1.1rem;
    }
    
    .contact-details p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .contact-details a {
        font-size: 1.1rem;
        font-weight: 500;
    }
    
    .contact-map {
        height: 250px;
    }
    
    .contact-map iframe {
        height: 250px;
    }

    .gallery-image, .gallery-card.featured .gallery-image {
        height: 220px;
    }
    
    .gallery-info {
        padding: 20px 15px;
    }
    
    .gallery-info h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
}
