/*
Theme Name: Washm Theme
Theme URI: https://refer.washm.vision/services
Author: Your Name
Description: A WordPress theme inspired by Washm's color palette and structure.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: washm-theme
Tags: custom-colors, responsive, clean
*/

body {
    font-family: 'Tajawal', Arial, sans-serif;
    background: #f8f6f3;
    color: #2d2d2d;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    border-bottom: 2px solid #e5e5e5;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    text-align: center;
}

header h1 a {
    color: #b48c5a;
    text-decoration: none;
    font-size: 2.5rem;
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

nav a {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

nav a:hover {
    color: #b48c5a;
}

.main-content {
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 40px;
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 0;
}

.hero-section h1 {
    font-size: 3rem;
    color: #b48c5a;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #f9f7f4;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e5e5e5;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card h3 {
    color: #b48c5a;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-benefits {
    margin: 20px 0;
}

.service-benefits h4 {
    color: #2d2d2d;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-benefits p {
    color: #666;
    line-height: 1.6;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
}

.price {
    font-weight: bold;
    color: #b48c5a;
    font-size: 1.1rem;
}

.duration {
    color: #666;
}

h1, h2, h3 {
    color: #b48c5a;
    font-family: 'Tajawal', Arial, sans-serif;
}

.button {
    background: #b48c5a;
    color: #fff;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    margin-top: 15px;
}

.button:hover {
    background: #a07a4a;
}

footer {
    background: #fff;
    border-top: 2px solid #e5e5e5;
    text-align: center;
    padding: 20px 0;
    color: #b48c5a;
    margin-top: 40px;
}

/* Contact Section Styles */
.contact-section {
    background: #f9f7f4;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-title {
    text-align: center;
    color: #b48c5a;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-description {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

.contact-label {
    display: block;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.contact-link {
    color: #b48c5a;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form h3 {
    text-align: center;
    color: #b48c5a;
    margin-bottom: 20px;
}

.washm-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.washm-contact-form input,
.washm-contact-form textarea {
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 6px;
    font-family: 'Tajawal', Arial, sans-serif;
    font-size: 1rem;
}

.washm-contact-form input:focus,
.washm-contact-form textarea:focus {
    outline: none;
    border-color: #b48c5a;
}

/* About Section Styles */
.about-section {
    padding: 60px 40px;
    margin: 40px 0;
}

.about-title {
    text-align: center;
    color: #b48c5a;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-image {
    text-align: center;
    margin: 30px 0;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.about-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #f9f7f4;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e5e5e5;
}

.feature-item h4 {
    color: #b48c5a;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Navigation Styles */
.washm-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-link {
    color: #2d2d2d;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #b48c5a;
    background: #f9f7f4;
}

/* Enhanced Service Card Styles */
.service-button {
    display: block;
    text-align: center;
    text-decoration: none;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive Design for New Components */
@media (max-width: 768px) {
    .contact-section,
    .about-section {
        padding: 40px 20px;
        margin: 20px 0;
    }
    
    .contact-title,
    .about-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .washm-navigation {
        gap: 15px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}