/* Custom styles for Deep Delved website */

:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #202124;
    --accent-color: #ea4335;
    --border-color: #dadce0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

#container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#sitetitle {
    font-size: 1.8rem;
    font-weight: bold;
}

#sitetitle a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Navigation menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero section */
.hero-section {
    text-align: center;
    padding: 60px 0;
    background-color: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: white;
}

.cta-button.secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Services section */
.services-overview {
    margin-bottom: 40px;
}

.services-overview h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.service-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
}

/* About section */
.about-section {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.about-section h2 {
    color: var(--primary-color);
    margin-top: 0;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Contact section */
.contact-section {
    text-align: center;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.contact-section h2 {
    color: var(--primary-color);
}

.contact-email {
    font-size: 1.2rem;
    font-weight: bold;
}

.contact-email a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer styles */
footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    margin-top: 40px;
}

.userinfo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.userinfo-avater {
    margin-right: 15px;
}

.userinfo-avater img {
    border-radius: 50%;
}

/* Team page styles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.team-title {
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Blog styles */
.blog-posts {
    margin-top: 30px;
}

.blog-post-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-post-card h2 {
    margin-top: 0;
}

.blog-post-card h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-meta {
    margin: 10px 0 20px;
    color: #666;
    font-size: 0.9rem;
}

.blog-tags {
    margin-left: 10px;
}

.blog-tag {
    display: inline-block;
    background: var(--light-bg);
    padding: 3px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 0.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    header {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu li {
        margin: 5px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}