/*
Theme Name: Dhara Theme
Theme URI:
Author: Ravindra Joshi
Description: Custom Salon Theme
Version: 1.0.0
Text Domain: dhara-theme
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    background: #111;
    color: white;
    padding: 20px;
}

footer {
    background: #111;
    color: white;
    padding: 20px;
}

section {
    padding: 80px 20px;
}

h1 {
    font-size: 48px;
}
.hero {
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f5f2;

    text-align: center;

    padding: 40px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;

    background: black;
    color: white;

    padding: 14px 28px;

    text-decoration: none;

    border-radius: 8px;
}
.services {
    padding: 80px 20px;
}

.services h2 {
    text-align: center;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
}

.service-card {
    padding: 20px;

    border: 1px solid #ddd;

    border-radius: 10px;

    background: white;
}
.gallery-detail{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.gallery-image{
    flex:1;
}

.gallery-info{
    flex:1;
}

.gallery-image img{
    width:100%;
    height:auto;
    display:block;
}
header {
    background: #000;
    padding: 20px;
}

header h2 {
    color: white;
    margin-bottom: 15px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
