/* **************************************************/
/* CSS style for pages.html */
 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

#about.content-section,
#contact-us.content-section,
#terms.content-section,
#privacy.content-section {
    background-color: #333333;
    color: #f1f1f1;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 0;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    max-width: 900px;
    animation: fadeInLeft 0.7s ease-out;
    display: none;
}

@keyframes fadeInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

#about.content-section.active,
#contact-us.content-section.active,
#terms.content-section.active,
#privacy.content-section.active {
    display: block;
}

.section-text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
}

#privacy .section-text-content p {
    text-align: left;
    margin-left: 20px;
}

#privacy .section-text-content ul,
#privacy .section-text-content li {
    list-style-type: disc;
    padding-left: 35px;
    text-align: left;
}

#terms .section-text-content p {
    text-align: left;
    margin-left: 20px;
}

h2.pag-section {
    font-size: 2.5em;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #555555;
}

h3.pag18-section {
    font-size: 1.8em;
    font-weight: 600;
    color: #f1f1f1;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Barber Card Styles */
.barber-card {
    display: flex;
    align-items: center;
    background-color: #444444;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 30px 0;
}

.barber-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.barber-info {
    flex-grow: 1;
}

.barber-name {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.barber-title {
    font-size: 1.1em;
    color: #cccccc;
    margin: 5px 0 10px;
}

.barber-bio {
    font-size: 1em;
    line-height: 1.6;
    color: #cccccc;
}

/* Navigation Styles */
.nav-links a.active {
    color: #a020f0;
    border-bottom: 2px solid #a020f0;
}

.space-y-4>p,
.space-y-4>ul,
.space-y-6>p,
.space-y-6>div {
    margin-bottom: 1rem;
}

.text-gray-700 {
    color: #cccccc;
}

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

.ml-4 {
    margin-left: 1rem;
}

.space-y-2>li {
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    color: #3b82f6;
    font-size: 1.875rem;
}

.contact-text .font-medium {
    font-weight: 500;
    font-size: 1.125rem;
}

.contact-email-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-email-link:hover {
    text-decoration: underline;
}

.info-alert {
    background-color: #2a3a50;
    border-left: 4px solid #3b82f6;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.375rem;
}

.info-alert .font-medium {
    font-weight: 500;
}

.privacy-email-link {
    color: #4cc790;
}

/*@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
    }
}*/

