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

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services .card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services .card:hover {
    transform: translateY(-5px);
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

/* About Section */
.about img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Appointment Section */
.appointment {
    background-color: #f8f9fa;
}

.appointment form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Message Styles */
.message {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: block;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    margin-top: 2rem;
}

.social-icons a {
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #007bff !important;
}/* Barber Brothers Social Hub */
#social-hub { padding: 2rem 1rem; background: #111; color: #fff; }
.sh-header { display:flex; flex-direction:column; gap:.5rem; align-items:flex-start; margin-bottom:1rem; }
.sh-header h2 { color:#ff0000; font-size:1.8rem; margin:0; }
.sh-header .sub { color:#ddd; margin:0; }
.sh-actions { margin-top:.5rem; display:flex; gap:.5rem; }
.btn { padding:.5rem .8rem; border-radius:8px; text-decoration:none; font-weight:600; }
.btn.primary { background:#ff0000; color:#fff; box-shadow:0 6px 18px rgba(255,0,0,0.15); }
.btn.outline { border:1px solid #fff; color:#fff; background:transparent; }

.live-card { margin:1rem 0; min-height:120px; }

/* Grid layout */
.photo-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:1rem; }
.photo-grid .photo { position:relative; overflow:hidden; border-radius:10px; min-height:110px; background:#222; }
.photo img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.photo:hover img { transform:scale(1.05); }
.photo .meta { position:absolute; left:8px; bottom:8px; background:rgba(0,0,0,0.5); color:#fff; padding:.25rem .5rem; border-radius:6px; font-size:.8rem; }

@media (max-width:1100px){ .photo-grid{grid-template-columns:repeat(3,1fr);} }
@media (max-width:700px){ .photo-grid{grid-template-columns:repeat(2,1fr);} .sh-header{text-align:center;align-items:center;} }
@media (max-width:420px){ .photo-grid{grid-template-columns:repeat(1,1fr);} }
