@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

:root {
    --primary-color: #FFFFFF;
    --secondary-color-light: #FF3333;  /* Lighter red */
    --secondary-color-dark: #CC0000;   /* Darker red */
    --accent-color: #d0a84a;  /* Slightly darker gold */
    --background-color: #000000;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.343 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413 7.07-7.07 7.07 7.07zm-2.827 2.83l1.414-1.416L30 14.97l-5.657 5.657 1.414 1.415L30 17.8l4.243 4.242zm-2.83 2.827l1.415-1.414L30 20.626l-2.828 2.83 1.414 1.414L30 23.456l1.414 1.414zM56.87 59.414L58.284 58 30 29.716 1.716 58l1.414 1.414L30 32.544l26.87 26.87z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

header {
    background-color: var(--background-color);
    color: var(--primary-color);
    text-align: center;
    padding: 2rem;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color-light);
    text-decoration: underline;
}

button, .btn {
    background-color: var(--accent-color);
    color: var(--background-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
    background-color: var(--secondary-color-light);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-title {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--accent-color);
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.site-header {
    margin-bottom: 2rem;
}

.logo-header {
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.logo-header img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 1rem;
}

.logo-header h1 {
    margin: 0.5rem 0;
    color: var(--accent-color);
}

.tagline {
    font-style: italic;
    opacity: 0.8;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    gap: 2rem;
}

.main-nav a {
    color: var(--primary-color);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    background-color: var(--accent-color);
    color: var(--background-color);
    text-decoration: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    aspect-ratio: 3/4;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(208, 168, 74, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-filter {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border: 1px solid var(--accent-color);
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(208, 168, 74, 0.2);
    padding-bottom: 0.5rem;
}

.filter-option {
    margin-bottom: 0.5rem;
}

.filter-option label {
    margin-left: 0.5rem;
    cursor: pointer;
}

.load-more {
    margin: 2rem auto;
    display: block;
}

.message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.message.success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #28a745;
}

.message.error {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #dc3545;
}

.message.info {
    background-color: rgba(23, 162, 184, 0.1);
    border: 1px solid rgba(23, 162, 184, 0.5);
    color: #17a2b8;
}

.barbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.barber-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.barber-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(208, 168, 74, 0.3);
}

.barber-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.barber-info {
    padding: 1.5rem;
}

.barber-info h3 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.barber-specialty {
    display: inline-block;
    background-color: rgba(208, 168, 74, 0.2);
    color: var(--accent-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.barbers-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    overflow: hidden;
}

.barbers-table th,
.barbers-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(208, 168, 74, 0.2);
}

.barbers-table th {
    background-color: rgba(208, 168, 74, 0.1);
    color: var(--accent-color);
    font-weight: bold;
}

.barbers-table tr:hover {
    background-color: rgba(208, 168, 74, 0.1);
}

.barber-row {
    cursor: pointer;
}

.social-link-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.remove-social {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background-color: var(--secondary-color-light);
}

.social-platform {
    min-width: 120px;
}

.dashboard-content {
    position: relative;
    z-index: 1;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.profile-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
}

.tags-container {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.social-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color-light);
}

.splash-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-header {
    padding: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    width: 100%;
}

.logo-header img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Footer Styles */
.site-footer {
    background-color: var(--background-color);
    color: var(--primary-color);
    padding: 3rem 1rem;
    margin-top: 2rem;
    border-top: 1px solid var(--accent-color);
    text-align: center;
}

.site-footer h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.site-footer h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 0 1rem 2rem;
    text-align: center;
}

.footer-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.footer-social .social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-social .social-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-social .social-link:hover i.fa-instagram {
    color: #C13584;
}

.footer-social .social-link:hover i.fa-facebook-f {
    color: #4267B2;
}

.footer-social .social-link:hover i.fa-tiktok {
    color: #ff0050;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.ornate-divider {
    height: 10px;
    background: repeating-linear-gradient(
        45deg,
        var(--background-color),
        var(--background-color) 10px,
        var(--accent-color) 10px,
        var(--accent-color) 20px
    );
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section {
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .profile-header {
        grid-template-columns: 1fr;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .logo-header img {
        width: 100%;
        max-width: 100%;
    }
}
/* Navigation fixes - Added 03/09/2025 */
.main-nav {
    background-color: var(--background-color);
    border-top: 1px solid var(--secondary-color-light);
    border-bottom: 1px solid var(--secondary-color-light);
    padding: 0.5rem 0;
    margin: 1rem 0;
}

.main-nav ul {
    margin: 0.5rem 0;
}

/* Active page indicator */
.main-nav a.active {
    background-color: var(--secondary-color-light);
    color: var(--primary-color);
}

/* Footer Social Links */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-social .social-link {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.footer-social .social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-social .social-link i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.footer-social .social-link:hover i.fa-instagram {
    color: #C13584;
}

.footer-social .social-link:hover i.fa-facebook-f {
    color: #4267B2;
}

.footer-social .social-link:hover i.fa-tiktok {
    color: #ff0050;
}
