/* Dreadlocks Page Specific Styles */

/* Hero Section */
.services-hero {
    background-image: url('../images/services/dreadlocks-hero.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subheadline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* Introduction Section */
.intro-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
}

/* Dreadlock Journey Section */
.dreadlock-journey-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 60px;
}

.journey-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
    align-items: flex-start;
}

.journey-image {
    flex: 0 0 40%;
}

.journey-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.journey-content {
    flex: 0 0 calc(60% - 40px);
}

.journey-stage {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.journey-stage:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.journey-stage h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #c8a97e;
    margin-bottom: 15px;
}

.journey-stage p {
    color: #666;
    line-height: 1.7;
}

/* Instant Lock Section */
.instant-lock-section {
    padding: 60px 0;
    background-color: #f9f5f0;
    margin-bottom: 60px;
}

.instant-lock-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.instant-lock-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.instant-lock-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.instant-lock-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.instant-lock-benefits li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 1.1rem;
}

.instant-lock-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a97e;
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-highlight {
    color: #c8a97e;
    font-weight: 500;
}

.instant-lock-cta {
    text-align: center;
    margin-top: 30px;
}

.instant-lock-link {
    color: #c8a97e;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 2px solid #c8a97e;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.instant-lock-link:hover {
    color: #b89669;
    border-color: #b89669;
}

/* Dreadlock Gallery Section */
.dreadlock-gallery-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 60px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

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

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

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

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

/* Care Guide Section */
.care-guide-section {
    padding: 60px 0;
    background-color: #f9f5f0;
    margin: 60px 0;
}

.care-guide-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.care-guide-content {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.care-guide-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #c8a97e;
}

.care-list {
    list-style: none;
    padding: 0;
}

.care-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.care-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a97e;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.faq-question::before {
    content: "Q:";
    position: absolute;
    left: 0;
    color: #c8a97e;
    font-weight: 700;
}

.faq-answer {
    color: #666;
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
}

.faq-answer::before {
    content: "A:";
    position: absolute;
    left: 0;
    color: #c8a97e;
    font-weight: 700;
}

/* Booking CTA Section */
.booking-section {
    padding: 60px 0;
    background-color: #f9f5f0;
    text-align: center;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.booking-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.book-now-btn {
    display: inline-block;
    background-color: #c8a97e;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-now-btn:hover {
    background-color: #b89669;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .journey-container {
        flex-direction: column;
    }
    
    .journey-image,
    .journey-content {
        flex: 0 0 100%;
    }
    
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .care-guide-container {
        flex-direction: column;
    }
    
    .care-guide-content {
        margin-bottom: 20px;
    }
    
    .instant-lock-content {
        padding: 30px 20px;
    }
    
    .instant-lock-intro {
        font-size: 1.1rem;
    }
    
    .instant-lock-benefits li {
        font-size: 1rem;
    }
    
    .instant-lock-cta {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .instant-lock-content {
        padding: 25px 15px;
    }
    
    .instant-lock-intro {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .instant-lock-benefits li {
        font-size: 0.95rem;
        padding-left: 25px;
        margin-bottom: 15px;
    }
    
    .instant-lock-cta {
        font-size: 0.95rem;
    }
}
