/* Original Color Scheme from 67comma1-website */
:root {
    --primary-color: #546e7a;
    --primary-hover: #37474f;
    --secondary-color: #2a2a2a;
    --accent-color: #78909c;
    --text-color: #333;
    --light-metallic: #eceff1;
    --medium-metallic: #cfd8dc;
    --dark-metallic: #90a4ae;
    --metallic-bg: #f5f7fa;
    --metallic-light: #ffffff;
    --gradient-start: #607d8b;
    --gradient-end: #455a64;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

* {
    scroll-behavior: smooth;
}

/* Apply original styling */
.hero-section {
    background: #f5f7fa;
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #000000;
    padding-right: 2rem;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

.hero-content h1 {
    color: #000000 !important;
}

.hero-content h2 {
    color: #000000 !important;
}

.hero-content .lead {
    color: #000000;
}

.hero-content .blockquote {
    border-color: var(--accent-color) !important;
    color: #000000;
}

.hero-content .blockquote-footer {
    color: #000000 !important;
}

.hero-content .btn-primary {
    background-color: #2a2a2a;
    border-color: #2a2a2a;
    color: white;
    font-weight: 600;
}

.hero-content .btn-primary:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

.hero-content .btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.hero-content .btn-outline-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-metallic);
    border-color: var(--secondary-color);
}

/* War Poetry Section */
.war-poetry-section {
    background: #f5f7fa;
    color: var(--text-color);
}

.war-poetry-section .display-6 {
    color: var(--secondary-color);
}

.war-poetry-section .card {
    border: 1px solid var(--medium-metallic);
    background: var(--metallic-light);
}

.war-poetry-section .bg-primary {
    background-color: var(--primary-color) !important;
}

.war-poetry-section .bg-success {
    background-color: var(--accent-color) !important;
}

.war-poetry-section .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.war-poetry-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Typography */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f5f7fa !important;
    min-height: 100vh;
    padding-top: 80px;
}

/* Image styling */
.hero-image {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--light-metallic);
}

/* Featured Works Section */
.featured-works {
    background: var(--metallic-light);
    color: var(--text-color);
}

.featured-works .featured-content h3 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--dark-metallic);
}

.featured-works .featured-content h4 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--secondary-color);
}

.featured-works .featured-content p {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
}

.featured-works .featured-image img {
    transition: transform 0.3s ease;
}

.featured-works .featured-image img:hover {
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-metallic);
}

.testimonials-section .display-6 {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--secondary-color);
}

.testimonials-section .card {
    border: 1px solid var(--medium-metallic);
    background: var(--metallic-light);
}

.testimonials-section .quote-icon {
    color: var(--primary-color) !important;
}

.testimonials-section .bg-primary {
    background-color: var(--primary-color) !important;
}

.testimonials-section .bg-success {
    background-color: var(--accent-color) !important;
}

.testimonials-section .bg-info {
    background-color: var(--dark-metallic) !important;
}

.testimonials-section .bg-warning {
    background-color: #f57c00 !important;
}

.testimonials-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.testimonials-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Newsletter Section */
.newsletter-signup {
    background-color: var(--secondary-color) !important;
}

.newsletter-signup .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.newsletter-signup .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* About Bio Section */
.about-bio-section {
    background: var(--metallic-light);
    min-height: 100vh;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.about-bio-section .profile-image {
    transition: transform 0.3s ease;
}

.about-bio-section .profile-image:hover {
    transform: scale(1.05);
}

.about-bio-section .bio-name {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.about-bio-section .bio-content {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-align: justify;
}

.about-bio-section .bio-content p {
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Projects Section */
.projects-section {
    background: var(--metallic-light);
    min-height: 100vh;
}

.project-card {
    background: var(--metallic-light);
    border: 1px solid var(--medium-metallic);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.project-card .project-image img {
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-link {
    transition: color 0.3s ease;
}

.project-card:hover .project-link {
    color: var(--primary-hover) !important;
}

/* Project Detail Section */
.project-detail-section {
    background: var(--metallic-light);
    min-height: 100vh;
}

.project-detail-section .requirement-item {
    border-left: 4px solid var(--primary-color);
}

.project-detail-section .project-content ul {
    padding-left: 1.5rem;
}

.project-detail-section .project-content ul li {
    margin-bottom: 0.75rem;
}

.project-detail-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.project-detail-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .featured-works .featured-content {
        padding-right: 0 !important;
        margin-bottom: 2rem;
    }

    .about-bio-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .about-bio-section .profile-image {
        width: 220px !important;
        height: 220px !important;
    }
}