:root {
    --sidebar-purple: #D8D0E3;
    --background-yellow: #FFD966;
    --button-white: #FFFFFF;
    --text-black: #000000;
}

@font-face {
    font-family: 'TT Firs Neue';
    src: url('TT Firs Neue Trial Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: normal;
}

html {
    background-color: #FFD966;
    min-height: 100%;
}

body {
    background-color: #FFD966;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'TT Firs Neue', sans-serif;
    font-weight: normal;
    padding: 2rem;
    margin: 0;
    overflow: hidden;
}

.chat-container {
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    min-height: 90vh;
    max-height: 90vh;
    background: white;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 4px solid #000000;
}

.sidebar {
    width: 200px;
    background-color: #D8D0E3;
    padding: 0;
    display: flex;
    flex-direction: column;
    border-right: 4px solid #000000;
}

.logo {
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    padding-left: 30px;
    margin-top: 0;
    order: 2;
    margin-top: auto;
}

nav {
    order: 1;
    margin-bottom: 0;
}

.nav-item {
    padding: 15px 30px;
    text-decoration: none;
    color: #000000;
    display: block;
    transition: all 0.3s ease;
    border-bottom: 3px solid #000000;
    margin-top: 0;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    background-color: #D8D0E3;
}

.nav-item:first-child {
    border-top: none;
    margin-top: 0;
}

.nav-item:hover {
    background-color: rgba(255,255,255,0.5);
}

.nav-item:active,
.nav-item.active {
    background-color: white;
}

.main-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    height: 100%;
}

.main-content::-webkit-scrollbar {
    width: 8px;
}

.main-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.main-content::-webkit-scrollbar-thumb {
    background: #D8D0E3;
    border-radius: 4px;
}

.page-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #000000;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-post h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #000000;
}

.post-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.blog-post p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-image {
    width: 100%; /* Make image responsive */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: Add rounded corners */
    margin-bottom: 15px; /* Space between image and text */
}

.read-now {
    background-color: #D8D0E3;
    color: #000000;
    border: 2px solid #000000;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.read-now:hover {
    background-color: #000000;
    color: white;
}

.disclaimer {
    color: #666;
    font-size: 12px;
    margin-top: auto;
}

/* Services Page Styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #000000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-card h2 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 22px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

/* Projects Page Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 8px;
    border: 1px solid #000000;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.project-image {
    height: 200px;
    background-color: #D8D0E3;
    margin-bottom: 20px;
}

.project-card h2 {
    padding: 0 20px;
    margin-bottom: 10px;
    color: #000000;
    font-size: 22px;
}

.project-card p {
    padding: 0 20px;
    margin-bottom: 20px;
    color: #444;
}

.project-tech {
    padding: 0 20px;
    margin-bottom: 20px;
}

.project-tech span {
    display: inline-block;
    background: #D8D0E3;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 14px;
}

.view-project {
    display: block;
    width: 100%;
    padding: 15px;
    background: #D8D0E3;
    border: none;
    border-top: 1px solid #000000;
    color: #000000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-project:hover {
    background: #000000;
    color: white;
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section {
    background: white;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    border: 1px solid #000000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-section h2 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #D8D0E3;
    margin: 0 auto 15px;
    border: 2px solid #000000;
}

.team-member h3 {
    color: #000000;
    margin-bottom: 5px;
}

/* Contact Page Styles */
.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #000000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    color: #000000;
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #000000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #000000;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #000000;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    background: #D8D0E3;
    color: #000000;
    border: 2px solid #000000;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #000000;
    color: white;
}
