@font-face {
    font-family: 'Pricedown Bl';
    src: url('/fonts/pricedownbl.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fceaff;
    line-height: 1.6;
    background-image: url('/images/bg_miami.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white; 
}



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


header {
    background-color: #ff0099;
    background-image: url('/images/atgazolt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 0 20px #ff33cc;
    font-family: 'Pricedown Bl', sans-serif;
}

header h1 {
    font-size: 3rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px #000;
    color: #fff;
    margin-bottom: 0.3rem;
}

header p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #ffe9fc;
}


nav {
    background-color: #1a1a2e;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Pricedown Bl', 'sans-serif';
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: #0ff;
    text-shadow: 1px 1px 5px #000, 2px 2px 10px #000;
}


.booking-section {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid #fff;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px #94C973;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 1.9rem;
    color: #fff;
    font-family: 'Pricedown Bl', 'sans-serif';
    text-shadow: 0px 3px #000;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.controls select, 
.controls input, 
.controls button {
    padding: 0.8rem;
    font-size: 1rem;
    flex: 1;
    min-width: 150px;
    border: 2px solid #94C973;
    border-radius: 8px;
    background-color: #1f1b2e;
    color: #fff;
    outline: none;
}
.controls button {
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

.controls button:hover {
    background-color: #94C973;
}


.loading {
    text-align: center;
    padding: 1rem;
    display: none;
    color: #00ffff;
    font-family: 'Pricedown Bl', 'sans-serif';
}


.slots-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.slot { 
    padding: 1rem;
    text-align: center;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
    color: #fff;
   
}

.slot:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.slot.available {
    font-family: 'Pricedown Bl', 'sans-serif';
    background-color: #00ffcc;
    color: #000;
    text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
    border-color: #00b894;
    font-size: 1.5rem;
}

.slot.unavailable {
    background-color: #555;
    border-color: #999;
    color: #aaa;
    cursor: not-allowed;
}


.customer-form {
    font-family: 'Pricedown Bl', 'sans-serif';
    display: none;
    margin-top: 2rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px dashed #ff33cc;
    border-radius: 10px;
    color: #fff;
}

.customer-form h3 {
    margin-bottom: 1rem;
    font-size: x-large;
    text-align: center;
    color: #000000;
    text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: x-large;
    color: #fff;
    text-shadow: 2px 2px #000;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #00ffff;
    border-radius: 5px;
    background-color: #1e1e2f;
    color: #fff;
}


.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.form-actions button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
}

.submit-btn {
    background-color: #00ffff;
    color: #000;
}

.cancel-btn {
    background-color: #ff0099;
    color: #fff;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .controls select, 
    .controls input, 
    .controls button {
        min-width: 100%;
    }
    .form-actions button{
	padding: 0.4rem 1rem;
    }
}

	    @keyframes neonGlow {
    0%, 100% {
        text-shadow:
            0 0 5px rgba(0, 0, 0, 0.7),
            0 0 10px #8A2BE2,
            0 0 20px #8A2BE2,
            0 0 40px #00BFFF;
    }
    50% {
        text-shadow:
            0 0 2px rgba(0, 0, 0, 0.5),
            0 0 10px #8A2BE2,
            0 0 20px #8A2BE2,
            0 0 40px #00BFFF; 
    }
}

.neon {
    color: #CCE5FF;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}
   .home-intro {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    box-shadow: 0 0 20px #ff33cc;
    color: #fff;
    font-family: 'Pricedown Bl', sans-serif;
    text-align: center;
}

.home-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: neonGlow 1.5s ease-in-out infinite alternate;
}

.home-intro p {
    font-size: 1.5444rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px #000;
}

.home-intro .tagline {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #fff;
    font-size:1.5444rem;
    text-shadow: 2px 2px 0px #000;
}


.provider-circle {
    position: relative;
    width: 300px; 
    height: 300px;
    margin: 2rem auto;
    border-radius: 50%;
    overflow: hidden; 
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4); 
    transform: rotate(-180deg);
}
@media (max-width: 380px) { 
    .provider-circle {
        max-width: 250px;
	max-height: 250px;
    }
}

@media (max-width: 360px) { 
    .provider-circle {
        max-width: 220px;
	max-height:220px;
    }
}

.triangle {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0.9;
    transition: box-shadow 0.3s ease-in-out, opacity 0.3s ease-in-out;
    clip-path: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
    transform-origin: 50% 50%;   
    background-color: rgba(0, 0, 0, 0.3); 
    display: flex; 
    justify-content: center;
    align-items: center;
}

.triangle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 75%;
    z-index: -1;
    transform: rotate(0deg);
    opacity: 90%;
}



.triangle.top {
    transform: rotate(0deg); 
    clip-path: polygon(50% 50%, 100% 0, 100% 100%); 
}

.triangle.top::before {
    background-image: url('/images/adam.jpg');
    transform: rotate(180deg);
    background-position: -100% 57%;
}

.triangle.right {
    transform: rotate(90deg); 
    clip-path: polygon(50% 50%, 100% 0, 100% 100%);
}

.triangle.right::before {
background-image: url('/images/dom.jpg');
transform: rotate(90deg);
background-position: 58% 0%;
}

.triangle.bottom {
    background: #06D6A0; 
    transform: rotate(180deg); 
    clip-path: polygon(50% 50%, 100% 0, 100% 100%); 
}

.triangle.left {
    background: #118AB2; 
    transform: rotate(270deg);
    clip-path: polygon(50% 50%, 100% 0, 100% 100%); 
}

.triangle:hover::before{
 box-shadow:
        0 0 0 2px rgba(255, 0, 153, 0.8), 
        0 0 0 4px rgba(0, 255, 255, 0.6), 
        0 0 20px 8px rgba(0, 255, 255, 0.4), 
        0 0 40px 12px rgba(255, 0, 153, 0.2); 
}
.triangle.right:hover::before{
    background-position: 58% 0%;
    transform: rotate(90deg);
}

.triangle.top:hover::before{
transform: rotate(180deg);
background-position: -100% 57%
}


.triangle:hover {
    opacity: 1; 
    z-index: 10; 
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);

}


.triangle.top:hover {
    box-shadow: 0 0 25px #FF6B6B; 
}

.triangle.right:hover {
    box-shadow: 0 0 25px #FFD166; 
}

.triangle.bottom:hover {
    box-shadow: 0 0 25px #06D6A0; 
}

.triangle.left:hover {
    box-shadow: 0 0 25px #118AB2; 
}


.triangle.selected {
    background-color: rgba(0, 255, 255, 0.5);
    box-shadow: 10px 10px 30px #00ffff; 
    opacity: 1; }

.provider-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; 
    height: 60px;
    background: #282c34;
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 5; }
.controls:not(.active),
.slots-container:not(.active) {
    display: none;
}

.customer-form {
    display: none;
}
.triangle.placeholder {
    background-color: rgba(100, 100, 100, 0.4); 
    cursor: default; 
    opacity: 0.6; 
    box-shadow: none; 
    transition: background-color 0.3s ease, opacity 0.3s ease; 
}

.triangle.placeholder:hover {
    background-color: rgba(100, 100, 100, 0.5); 
    opacity: 0.7; 
    box-shadow: 0 0 10px rgba(100, 100, 100, 0.3); 
}


.selected-barber-info {
    font-family: 'Pricedown Bl', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.6);
    border: 2px solid #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    position: relative;
}

.selected-barber-info .barber-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.selected-barber-info .barber-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #ff0099;
    object-fit: cover;
    box-shadow: 0 0 15px #ff0099;
    background-position: -100% 50%;
}

.selected-barber-info .barber-name {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 10px #000, 0 0 20px #000;
    margin-bottom: 0;
}


.back-button {
    background-color: #1f1b2e;
    color: white;
    border: 2px solid #94C973;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Pricedown Bl', sans-serif;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem; 
    top: 1rem;
    left: 1rem; 
}

.back-button:hover {
    background-color: #94C973;
}

.services-container {
    max-width: 1200px; 
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem; 
    padding-right: 1rem; 
}

.services-title {
    font-size: 2.3rem; 
    font-weight: bold; 
    text-align: center; 
    margin-left: auto; 
    margin-right: auto; 
    width: fit-content;
    margin-bottom: 3rem; 
    
    
    font-family: 'Pricedown Bl', sans-serif; 
    color: #fff; 
    text-shadow:
        0 0 5px #ff0099, 
        0 0 10px #ff0099;
        
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; 
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}


.service-card {
    padding: 1.5rem; 
    border-radius: 0.5rem; 
    background-color: rgba(0, 0, 0, 0.7); 
    border: 2px solid #00ffff; 
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4); 
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7), 
                0 0 40px rgba(255, 0, 153, 0.5); 
    background-color: rgba(0, 0, 0, 0.85); 
}

.service-card-title {
    font-size: 2.25rem; 
    font-weight: bold; 
    margin-bottom: 1rem; 
    font-family: 'Pricedown Bl', sans-serif;
    color: #ffcc00;
    text-shadow:
        3px 3px 1px #000,
        3px 3px 1px #000; 
}
.service-card-description {
    color: #d1d5db; 
    margin-bottom: 1rem;
}

.service-card-price {
    font-size: 1.5rem; 
    font-weight: bold; 
    font-family: 'Pricedown Bl', sans-serif;
    color: #00ffff;
    text-shadow:
        2px 2px #000;
        
}



.slot.selected {
    background-color: black; 
    color: white; 
    border-color: white; 
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); 
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5); 
}
.contact-section {
    padding: 60px 20px;
    background-color: #1a1a1a; 
    color: #eee;
    text-align: center;
    position: relative;
    overflow: hidden; 
}
.contact-section a {
    color:white;
}
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Pricedown Bl';
    font-size: 3em;
    color: #ffcc00; 
        text-shadow:
        2px 2px #000; 
    margin-bottom: 40px;
    text-transform: uppercase;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.contact-info ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-info ul li i {
    color: #ffcc00;
    margin-right: 10px;
    font-size: 1.2em;
}

.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: #eee;
    font-size: 2.5em; 
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; 
}

.social-icons a:hover {
    color: #ffcc00; 
    transform: scale(1.1); 
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5em;
    }

    .contact-info {
        font-size: 1em;
    }

    .social-icons a {
        font-size: 2em;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 2em;
    }

    .contact-info ul li {
        flex-direction: column;
        text-align: center;
    }

    .contact-info ul li i {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

