/* Main CSS for Kwamba Hair Braiding Salon Website */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Navigation */
.navbar {
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

/* Booking Alert */
.booking-alert {
    margin-bottom: 0;
    border-radius: 0;
    padding: 0.5rem;
}

/* Footer */
footer {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    margin-right: 0.5rem;
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Gallery */
.gallery-item {
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-footer {
    padding: 1rem;
    background-color: #fff;
}

.gallery-item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-item-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.gallery-filters {
    margin-bottom: 2rem;
}

/* Like/Dislike Buttons */
.like-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.like-btn, .dislike-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
    color: #6c757d;
}

.like-btn:hover {
    color: #0d6efd;
}

.dislike-btn:hover {
    color: #dc3545;
}

.like-btn.active {
    color: #0d6efd;
}

.dislike-btn.active {
    color: #dc3545;
}

/* Comments */
.comment {
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 3px solid #0d6efd;
    background-color: #f8f9fa;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.comment-date {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

/* Appointments */
.appointment-form {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Contact */
.contact-info {
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.contact-info i {
    margin-right: 0.5rem;
    color: #0d6efd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
    }
    
    .feature-box {
        margin-bottom: 1.5rem;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }
}

/* Custom CSS for Mary African Hair Braiding Salon */

:root {
    --primary-purple: #6a0dad;
    --light-purple: #9d4edd;
    --dark-purple: #3c096c;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--light-purple);
    text-decoration: none;
}

.text-purple {
    color: var(--primary-purple) !important;
}

.bg-purple {
    background-color: var(--primary-purple) !important;
}

.btn-purple {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
    color: white;
}

.btn-purple:hover {
    background-color: var(--dark-purple);
    border-color: var(--dark-purple);
    color: white;
}

.btn-outline-purple {
    background-color: transparent;
    border-color: var(--primary-purple);
    color: var(--primary-purple);
}

.btn-outline-purple:hover {
    background-color: var(--primary-purple);
    color: white;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.booking-alert {
    margin-bottom: 0;
    border-radius: 0;
}

footer {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Gallery Styles */
.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    vertical-align: middle;
}

.gallery-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #000;
}

.gallery-item-footer {
    padding: 15px;
    background-color: #fff;
}

.gallery-item-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.gallery-item-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

.gallery-filters {
    margin-bottom: 20px;
}

.like-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.like-btn, .dislike-btn {
    display: inline-flex;
    align-items: center;
    border: none;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.like-btn:hover {
    background-color: #e3f2fd;
}

.dislike-btn:hover {
    background-color: #fff5f5;
}

.like-btn.active {
    background-color: #e3f2fd;
}

.dislike-btn.active {
    background-color: #fff5f5;
}

/* Comment Styles */
.comment {
    padding: 15px;
    border-radius: 10px;
    background-color: #f8f9fa;
    margin-bottom: 15px;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-date {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 10px;
}

/* Form Styles */
.appointment-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.contact-info {
    border-radius: 10px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    background-color: #fff;
}

.contact-info i {
    width: 25px;
    color: var(--primary-purple);
}

/* Social Sharing Buttons */
.share-social-btn {
    transition: all 0.3s ease;
}

.share-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.share-social-btn i {
    font-size: 1.1rem;
}

.dropdown-menu .share-btn,
.dropdown-menu .batch-share-btn {
    cursor: pointer;
}

.dropdown-menu .share-btn:hover,
.dropdown-menu .batch-share-btn:hover {
    background-color: #f8f9fa;
}

.dropdown-menu .share-btn i,
.dropdown-menu .batch-share-btn i {
    width: 20px;
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
    
    .gallery-item img,
    .gallery-item video {
        height: 200px;
    }
} 