/* Handcrafted Leather Notebook Brand - Main Styles */

:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-brown: #8B4513;
    --primary-cream: #F5F5DC;
    --primary-gold: #DAA520;
    --primary-sage: #87A96B;
    --primary-charcoal: #2F2F2F;
    
    /* Light Shades */
    --brown-light: #CD853F;
    --cream-light: #FEFEFE;
    --gold-light: #FFD700;
    --sage-light: #B8D4A3;
    --charcoal-light: #4A4A4A;
    
    /* Dark Shades */
    --brown-dark: #654321;
    --cream-dark: #E6E6D3;
    --gold-dark: #B8860B;
    --sage-dark: #556B2F;
    --charcoal-dark: #1A1A1A;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary-charcoal);
    background-color: var(--primary-cream);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-brown);
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-charcoal);
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-charcoal);
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: var(--charcoal-light);
    margin-bottom: 1rem;
}

.text-muted {
    color: var(--charcoal-light);
}

/* Header & Navigation */
.navbar {
    background-color: var(--primary-cream);
    border-bottom: 1px solid var(--cream-dark);
    padding: 1rem 0;
}

.navbar-nav .nav-link {
    color: var(--primary-charcoal);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-brown);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream-light) 0%, var(--primary-cream) 100%);
    position: relative;
}

.hero-decorative {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--sage-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
}

.hero-decorative:nth-child(1) {
    top: 10%;
    right: 15%;
}

.hero-decorative:nth-child(2) {
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
}

/* Section Styling */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: var(--primary-brown);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Services Cards */
.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
}

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

.service-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-top: 1rem;
}

/* Features Section */
.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--sage-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-charcoal);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 2rem;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--primary-cream);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Reviews/Testimonials */
.review-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: none;
    height: 100%;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--charcoal-light);
}

.review-author {
    font-weight: 600;
    color: var(--primary-brown);
}

/* Price Plans */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: none;
    height: 100%;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--primary-gold);
    transform: scale(1.05);
}

.price-amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-brown);
    margin: 1rem 0;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.price-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--cream-dark);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid var(--cream-dark);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.btn-primary {
    background-color: var(--primary-brown);
    border-color: var(--primary-brown);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--brown-dark);
    border-color: var(--brown-dark);
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: none;
}

.faq-question {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--charcoal-light);
    line-height: 1.6;
}

/* Gallery */
.gallery-item {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

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

/* Blog Section */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border: none;
    height: 100%;
}

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

.blog-image {
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

/* Footer */
.footer {
    background-color: var(--primary-charcoal);
    color: var(--primary-cream);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--primary-cream);
    margin-bottom: 1.5rem;
}

.footer a {
    color: var(--cream-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    border-top: 1px solid var(--charcoal-light);
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Accessibility - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 1rem 0;
}

.breadcrumb-item img {
    width: 20px;
    height: 20px;
}

/* Additional Page Sections */
.page-section {
    padding: 4rem 0;
}

.page-section:nth-child(even) {
    background-color: var(--cream-light);
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: none;
    height: 100%;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-brown);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Timeline */
.timeline-item {
    border-left: 3px solid var(--primary-brown);
    padding-left: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: var(--primary-brown);
    border-radius: 50%;
    position: absolute;
    left: -7.5px;
    top: 0;
}

/* Career Cards */
.career-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: none;
    height: 100%;
}

/* Core Info Grid */
.core-info-item {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border: none;
    height: 100%;
} 

.hero-section h1 {
    padding-top: 275px;
}


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
