:root {
    --primary: #9b59b6;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --gold: #f1c40f;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 76px;
    background-color: var(--light);
}

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

.navbar-brand {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    font-weight: 500;
    color: var(--dark);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #8e44ad;
    border-color: #8e44ad;
    transform: translateY(-2px);
}

.hero-section {
    background: linear-gradient(rgba(155, 89, 182, 0.7), rgba(52, 152, 219, 0.7)), url('images/dj8.png');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    color: white;
    border-radius: 0 0 10px 10px;
    text-align: center;
}

.section-title {
    margin-bottom: 30px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

.service-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-info {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

footer {
    background-color: var(--primary);
    color: white;
    padding: 50px 0 20px;
}

footer h5 {
    color: var(--light);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent);
}

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

.social-icons a:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
}

.map-container {
    height: 300px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border-left: 4px solid var(--secondary);
}

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

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-card .rating {
    color: var(--gold);
}

.section-padding {
    padding: 80px 0;
}

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

.facility-category {
    text-align: center;
    margin-bottom: 40px;
}

.facility-category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 20px 0;
}

.gallery-filter {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-filter button {
    background: none;
    border: 1px solid var(--secondary);
    padding: 8px 20px;
    margin: 0 5px;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.gallery-filter button.active, .gallery-filter button:hover {
    background-color: var(--secondary);
    color: white;
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(155, 89, 182, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* About Section Styles */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.about-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    transform: translateX(-50%);
}

.about-content {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

/* Services Section Styles */
.services-section {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
}

.services-title:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
    transform: translateX(-50%);
}

.services-content {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--secondary);
}

.gallery-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--dark);
}

.footer-content {
    text-align: center;
}

/* Form Focus Styles - Updated to use website colors */
.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.dj-package {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent);
    transition: all 0.3s ease;
}

.dj-package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.package-price {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    margin: 20px 0;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--secondary);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
}