/* Main Styles for Digimarq Technology Theme */

/* Doctor Template Styles */
.doctor-template .doctor-hero {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.doctor-template .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.doctor-template .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.doctor-template .service-card:hover {
    transform: translateY(-5px);
}

.doctor-template .service-image {
    margin-bottom: 20px;
}

.doctor-template .service-image img {
    width: 100%;
    border-radius: 8px;
}

.doctor-template .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.doctor-template .features-list {
    list-style: none;
    margin-top: 20px;
}

.doctor-template .features-list li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.doctor-template .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.doctor-template .team-member {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.doctor-template .team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.doctor-template .appointment-section {
    background: #f5f5f5;
    padding: 60px 0;
}

/* Singer Template Styles */
.singer-template .singer-hero {
    background: linear-gradient(135deg, #FF6B6B 0%, #ee5a6f 100%);
}

.singer-template .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.singer-template .stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.singer-template .stat-item {
    text-align: center;
}

.singer-template .stat-item h3 {
    font-size: 2.5rem;
    color: #FF6B6B;
    margin-bottom: 5px;
}

.singer-template .music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.singer-template .music-item {
    text-align: center;
}

.singer-template .music-cover {
    position: relative;
    margin-bottom: 15px;
}

.singer-template .music-cover img {
    width: 100%;
    border-radius: 10px;
}

.singer-template .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.singer-template .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.singer-template .events-list {
    margin-top: 40px;
}

.singer-template .event-item {
    display: flex;
    gap: 30px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.singer-template .event-date {
    text-align: center;
    background: #FF6B6B;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    min-width: 80px;
}

.singer-template .event-date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.singer-template .event-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Corporate Template Styles */
.corporate-template .corporate-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.corporate-template .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-left: 15px;
    transition: all 0.3s;
}

.corporate-template .btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

.corporate-template .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.corporate-template .service-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.corporate-template .service-card:hover {
    transform: translateY(-5px);
}

.corporate-template .service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.corporate-template .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.corporate-template .about-stats {
    display: flex;
    gap: 30px;
    justify-content: space-around;
}

.corporate-template .stat-item {
    text-align: center;
}

.corporate-template .stat-item h3 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.corporate-template .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.corporate-template .team-member {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.corporate-template .team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
}

.corporate-template .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.corporate-template .testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.corporate-template .testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.corporate-template .testimonial-author {
    font-weight: bold;
    color: #2c3e50;
}

.corporate-template .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Common Styles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Restaurant Template Styles */
.restaurant-template .restaurant-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

.restaurant-template .menu-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.restaurant-template .menu-category {
    padding: 10px 20px;
    border: 2px solid #FF6B35;
    background: transparent;
    color: #FF6B35;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.restaurant-template .menu-category.active,
.restaurant-template .menu-category:hover {
    background: #FF6B35;
    color: #fff;
}

.restaurant-template .menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.restaurant-template .menu-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.restaurant-template .menu-item-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.restaurant-template .menu-item-info {
    padding: 20px;
}

.restaurant-template .menu-item-info h3 {
    margin-bottom: 10px;
}

.restaurant-template .price {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF6B35;
    margin-top: 10px;
}

/* Education Template Styles */
.education-template .education-hero {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.education-template .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.education-template .course-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.education-template .course-card:hover {
    transform: translateY(-5px);
}

.education-template .course-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.education-template .admission-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.education-template .step-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.education-template .step-number {
    width: 60px;
    height: 60px;
    background: #4A90E2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

/* Fitness Template Styles */
.fitness-template .fitness-hero {
    background: linear-gradient(135deg, #E74C3C 0%, #C0392B 100%);
}

.fitness-template .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.fitness-template .feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.fitness-template .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.fitness-template .classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fitness-template .class-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.fitness-template .class-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fitness-template .class-info {
    padding: 20px;
}

.fitness-template .class-time {
    display: block;
    color: #E74C3C;
    font-weight: bold;
    margin-top: 10px;
}

.fitness-template .membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.fitness-template .membership-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.fitness-template .membership-card:hover {
    transform: translateY(-5px);
}

.fitness-template .membership-card.featured {
    border: 3px solid #E74C3C;
    transform: scale(1.05);
}

.fitness-template .membership-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #E74C3C;
    margin: 20px 0;
}

.fitness-template .membership-card .price span {
    font-size: 1rem;
    color: #666;
}

.fitness-template .membership-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.fitness-template .membership-features li {
    padding: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .doctor-template .about-content,
    .singer-template .about-content,
    .corporate-template .about-content,
    .corporate-template .contact-content,
    .restaurant-template .about-content,
    .education-template .about-content {
        grid-template-columns: 1fr;
    }
    
    .singer-template .stats,
    .corporate-template .about-stats,
    .education-template .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .corporate-template .btn-secondary,
    .restaurant-template .btn-secondary,
    .education-template .btn-secondary,
    .fitness-template .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .fitness-template .membership-card.featured {
        transform: scale(1);
    }
}

