* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
 /* Background Effects */
.circle {
    background: #070538;
    background: radial-gradient(circle, rgba(7, 5, 56, 1) 47%, rgba(11, 62, 156, 1) 76%, rgba(2, 33, 92, 1) 98%); border-radius: 50%;
    height: 40rem;
    width: 40rem;
    filter: blur(10px);
    position: fixed;
    top: 50%;
    left: 10%;
    margin-left: 10rem;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: bounce-circle 25s ease-in-out infinite;
}
.rod {
    background: #fa4214;
    background: radial-gradient(circle, rgba(250, 66, 20, 1) 79%, rgba(252, 166, 45, 1) 96%);
    border-radius: 30%;
    height: 20rem;
    width: 20rem;
    filter: blur(40px);
    position: absolute;
    z-index: -2;
    rotate: -30deg;
    margin-right: 0px;
    transform: translate(1000px, 200px);
}

.rod2 {
    background: #fa4214;
    background: radial-gradient(circle, rgba(250, 66, 20, 1) 79%, rgba(252, 166, 45, 1) 96%);
    border-radius: 30%;
    height: 20rem;
    width: 20rem;
    filter: blur(40px);
    position: absolute;
    z-index: -2;
    rotate: -30deg;
    margin-right: 0px;
    transform: translate(600px, 600px);
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 90%;
    margin: 0 auto;
    color: rgb(30, 30, 30);
    /* background: 'images/Headshots.jpeg';
    background-color: rgb(0, 0, 0); */
    background: #0e0e0e;
    /* background: radial-gradient(circle, rgba(250, 139, 20, 1) 59%, rgba(237, 194, 114, 1) 75%); */
    /* background-size: 30px 30px;
    background-position: -19px -19px; */

   }

/* Global image styles - no border-radius by default */
img {
    max-width: 100%;
    height: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    margin-right: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80vh;
    gap: 60px;
    position: relative;
    padding: 40px 0;

}

.hero-left h1{
    font-family: 'Krona One', sans-serif;
    font-size: 56px;
    margin-bottom: 24px;
    line-height: 1.2;
    color: rgb(248, 238, 209);
}

.hero-description {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: rgb(248, 238, 209);
}

.hero-left {
    flex: 1;
    max-width: 600px;
    z-index: 1;

}

/* Right Image */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: right;
    align-items: right;

}

/* Hero buttons inherit from base .btn styles - no override needed */

.profile-pic {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    /* border: 5px solid #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.profile-pic:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    border: 10px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content:center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    overflow: hidden;
    background-color: transparent;
    backdrop-filter: blur(10px);
    position: sticky;
    font-family: 'century gothic', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1000;
    
    
    
}

nav a {
    /* margin-right: 20px; */
    text-decoration: none;
    color: rgb(248, 238, 209);
    padding: 10px;
}


article {
    margin-bottom: 40px;
}

h1 { margin-bottom: 20px; }
h2 { margin-bottom: 10px; }

footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: rgb(30, 30, 30);
}

/* ... existing styles ... */

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.btn,
button.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: white 0.5px solid;
    font-family: 'Google Sans Flex', system-ui, -apple-system, sans-serif;
    
    /* Reset button defaults */
    background: none;
    line-height: normal;
    
    /* Make them align properly */
    vertical-align: middle;
}

.btn-primary {
    background-color: rgba(255, 255, 255, 0.292);
    backdrop-filter: blur(10px);
    color: rgb(248, 238, 209);
    border: white 0.5px solid;
}

.btn-primary:hover {
    background-color: rgb(248, 238, 209);
    color: #0e0e0e;
    border-color: rgb(248, 238, 209);
}

.btn-secondary-outline {
    background-color: transparent;
    color: rgb(248, 238, 209);
    border: white 0.5px solid;
}

.btn-secondary-outline:hover {
    background-color: rgb(248, 238, 209);
    color: #0e0e0e;
    border-color: rgb(248, 238, 209);
}

.btn-danger {
    background-color: rgba(217, 83, 79, 0.8);
    backdrop-filter: blur(10px);
    color: rgb(248, 238, 209);
    border: rgba(217, 83, 79, 0.5) 0.5px solid;
}

.btn-danger:hover {
    background-color: rgba(217, 83, 79, 1);
    color: rgb(248, 238, 209);
    border-color: rgba(217, 83, 79, 1);
}

.post-actions {
    margin: 20px 0;
}

.post-actions a {
    margin-right: 15px;
}

.post-content {
    margin-top: 30px;
}

.post-content img,
.project-description img,
.blog-detail .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    margin: 20px 0;
}

.errors {
    color: #d9534f;
    font-size: 14px;
    margin-top: 5px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
   
}

.project-card {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
}

.projects-sidebar{
     position: sticky;
    top: 0;
}

.project-card h2 {
    margin-bottom: 15px;
}

.project-tech {
    margin: 15px 0;
}

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

/* Resume */
.resume-section {
    margin-bottom: 40px;
    
}

.resume-section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.resume-item {
    margin-bottom: 30px;
}

.resume-item h3 {
    margin-bottom: 5px;
}

.company {
    color: #666;
    margin-bottom: 10px;
}

.resume-item ul {
    margin-left: 20px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill {
    background: #5555558e;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin-bottom: 40px;
}

.contact-info {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.contact-info h2 {
    margin-bottom: 20px;
}

@keyframes bounce-circle {
    0%, 100% {
        transform: translate(-50vw, -50vh);
        border-radius: 50% 45% 55% 50%;
    }
    50% {
        transform: translate(-25vw, -25vh);
        border-radius: 45% 55% 50% 45%;
    }
    75% {
        transform: translate(-10vw, -80vh);
        border-radius: 40% 55% 50% 35%;
    }
}



/* Responsive */
@media (max-width: 968px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        gap: 40px;
    }
    
    .hero-left {
        max-width: 100%;
    }
    
    .hero-left h1 {
        font-size: 42px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    
    
    .profile-pic {
        width: 300px;
        height: 300px;
    }
    
    /* .circle, .rod {
        display: none;
    } */
}

.projects-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 0;
    min-height: 80vh;
    border: white 0.5px solid;
    border-radius: 12px;
    background-color: transparent;
    backdrop-filter: blur(50px);
}

.projects-header{
    position: fixed;
    z-index: 1000;
    overflow: hidden;
    /* top: 0; */
}

.projects-sidebar {
    padding: 40px;
    background-color: transparent;
    overflow-y: auto;
    max-height: 90vh;
    position: sticky;
    top: 80px;
}

.projects-sidebar h1 {
    margin-bottom: 40px;
    font-size: 32px;
    color:white;
    
}

.projects-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    max-height: 100vh;

}

.project-item {
    padding: 24px;
    background-color: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.project-item:hover {
    transform: translateX(8px);
    background-color: rgba(0, 45, 141, 0.5);
}

.project-item.active {
     background-color: rgba(0, 45, 141, 0.5);
    color: #333;

}

.project-number {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.project-item.active .project-number {
    color: #878787;
}

.project-item h3 {
    margin-bottom: 8px;
    font-size: 20px;
    color: white;
}

.project-item p {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

.project-item.active p {
    color: rgb(255, 255, 255);;
}

.project-detail {
    padding: 60px;
    /* background: rgba(255, 255, 255, 0.203);
    backdrop-filter: blur(10px); */
    overflow-y: auto;
    max-height: 90vh;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6eb7ce;
}

.project-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: white
}

.project-image {
    margin: 40px 0;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    max-width: 100%;
}

.project-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.info-item h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: #6eb7ce;
    margin-bottom: 10px;
}

.info-item p{
    color: rgb(172, 172, 172);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: #d2d2d2;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
}


.projects-layout h1{
    font-weight: 500;
}


.project-description {
    margin: 40px 0;
    line-height: 1.8;
    color: white;
}

.project-description p {
    margin-bottom: 20px;
    color: rgb(172, 172, 172);
    font-size: 16px;
}

.project-description h1,
.project-description h2,
.project-description h3,
.project-description h4,
.project-description h5,
.project-description h6 {
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-description h1 {
    font-size: 32px;
}

.project-description h2 {
    font-size: 28px;
}

.project-description h3 {
    font-size: 24px;
}

.project-description h4 {
    font-size: 20px;
}

.project-description ul,
.project-description ol {
    margin: 20px 0;
    padding-left: 30px;
    color: rgb(172, 172, 172);
}

.project-description li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.project-description a {
    color: #6eb7ce;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-description a:hover {
    color: white;
    text-decoration: underline;
}

.project-description strong,
.project-description b {
    color: white;
    font-weight: 600;
}

.project-description em,
.project-description i {
    font-style: italic;
}

.project-description blockquote {
    border-left: 3px solid #6eb7ce;
    padding-left: 20px;
    margin: 20px 0;
    color: rgb(172, 172, 172);
    font-style: italic;
}

.project-description code {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
    font-size: 14px;
    color: #6eb7ce;
}

.project-description pre {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 3px solid #6eb7ce;
    color: rgb(172, 172, 172);
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 100%;
    overflow: auto;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
    border-radius: 4px;
}

.project-description pre code {
    background: none;
    padding: 0;
    color: inherit;
}

.project-description hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.project-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: rgb(172, 172, 172);
}

.project-description table th,
.project-description table td {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: left;
}

.project-description table th {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
}

.project-links {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.project-links a {
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.456);
    border: 2px solid #9a9a9a;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.empty-state {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #999;
}

@media (max-width: 968px) {
    .projects-layout {
        grid-template-columns: 1fr;
    }
    
    .projects-sidebar {
        position: relative;
        max-height: none;
    }
    
    .project-detail {
        padding: 30px;
        margin-top: 100px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    border: white 0.5px solid;
    border-radius: 12px;
    background-color: transparent;
    backdrop-filter: blur(50px);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #33333363;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10001;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #555;
    transform: rotate(90deg);
}

.modal-body {
    overflow-y: auto;
    max-height: 90vh;
    padding: 60px 50px 40px;
    color: rgb(248, 238, 209);
}

/* Resume container inside modal */
.resume-container {
    max-width: 800px;
    margin: 0 auto;
}

.resume-container .resume-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #333;
}

.resume-container .resume-header h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

.resume-container .subtitle {
    font-size: 1.2em;
    color: #bdbdbd;
    margin-bottom: 15px;
}

.resume-container .subtitle-text {
    font-style: italic;
    color: #bdbdbd;
    margin-bottom: 10px;
}

.resume-container .contact-links {
    margin-top: 15px;
}

.resume-container .contact-links a {
    margin: 0 15px;
    color: #6eb7ce;
    text-decoration: none;
    font-weight: 600;
}

.resume-container .contact-links a:hover {
    text-decoration: underline;
}

.resume-container .resume-section {
    margin-bottom: 40px;
}

.resume-container .resume-section h2 {
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.resume-container .resume-item {
    margin-bottom: 30px;
}

.resume-container .resume-item h3 {
    margin-bottom: 8px;
    font-size: 1.3em;
}

.resume-container .company {
    color: #6eb7ce;
    margin-bottom: 12px;
    font-weight: 500;
}

.resume-container .resume-item ul {
    margin-left: 25px;
    line-height: 1.8;
}

.resume-container .resume-item li {
    margin-bottom: 8px;
}

.resume-container .skills-category {
    margin-bottom: 30px;
}

.resume-container .skills-category h3 {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: rgb(248, 238, 209);;
}

.resume-container .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.resume-container .skill {
    background: #333;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.resume-container .resume-actions {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.resume-actions a{
    color: #6eb7ce;
}

/* Scrollbar styling for modal */
.modal-body::-webkit-scrollbar {
    width: 0px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-body {
        padding: 50px 30px 30px;
    }
    
    .resume-container .resume-header h1 {
        font-size: 2em;
    }
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.456);
    border: 1px solid #f7f7f7;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    border-color: #333;
    background: #8da6ff;
}

.filter-btn.active {
    background: #8da6ff;
    color: white;
    border-color: #333;
}

/* Category badge on project items */
.project-category-badge {
    display: inline-block;
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.project-item.active .project-category-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ddd;
}

/* Blog Styles */
.blog-container {
    border: white 0.5px solid;
    border-radius: 12px;
    background-color: transparent;
    backdrop-filter: blur(50px);
    padding: 60px;
    margin-top: 30px;
}

.blog-header {
    margin-bottom: 40px;
}

.blog-header h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 30px;
    font-weight: 500;
}

.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-post-card {
    padding: 30px;
    background-color: transparent;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-post-card:hover {
    transform: translateX(8px);
    background-color: rgba(0, 45, 141, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.blog-post-card h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: white;
}

.blog-post-card h2 a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card h2 a:hover {
    color: #6eb7ce;
}

.blog-post-card time {
    display: block;
    font-size: 14px;
    color: #6eb7ce;
    margin-bottom: 15px;
}

.blog-post-card p {
    color: rgb(172, 172, 172);
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-post-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.blog-post-actions a {
    color: #6eb7ce;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blog-post-actions a:hover {
    color: white;
    text-decoration: underline;
}

.blog-detail {
    border: white 0.5px solid;
    border-radius: 12px;
    background-color: transparent;
    backdrop-filter: blur(50px);
    padding: 60px;
    margin-top: 30px;
}

.blog-detail h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    font-weight: 500;
}

.blog-detail time {
    display: block;
    font-size: 14px;
    color: #6eb7ce;
    margin-bottom: 30px;
}

.blog-detail .post-content {
    margin-top: 40px;
    line-height: 1.8;
    color: white;
}

.blog-detail .post-content p {
    margin-bottom: 20px;
    color: rgb(172, 172, 172);
}

.blog-detail .post-content h2,
.blog-detail .post-content h3,
.blog-detail .post-content h4 {
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-detail .post-content a {
    color: #6eb7ce;
    text-decoration: none;
}

.blog-detail .post-content a:hover {
    text-decoration: underline;
}

.blog-detail .post-actions {
    margin: 30px 0;
    display: flex;
    gap: 15px;
}

.blog-detail .post-actions a {
    color: #6eb7ce;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blog-detail .post-actions a:hover {
    color: white;
    text-decoration: underline;
}

.blog-back-link {
    display: inline-block;
    margin-top: 40px;
    color: #6eb7ce;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.blog-back-link:hover {
    color: white;
    text-decoration: underline;
}

.blog-empty {
    text-align: center;
    padding: 60px;
    color: rgb(172, 172, 172);
}

.blog-form-container {
    border: white 0.5px solid;
    border-radius: 12px;
    background-color: transparent;
    backdrop-filter: blur(50px);
    padding: 60px;
    margin-top: 30px;
}

.blog-form-container h1 {
    font-size: 32px;
    color: white;
    margin-bottom: 40px;
    font-weight: 500;
}

.blog-form-container .form-group label {
    color: white;
    margin-bottom: 10px;
}

.blog-form-container .form-input,
.blog-form-container input[type="text"],
.blog-form-container input[type="email"],
.blog-form-container textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
}

.blog-form-container .form-input:focus,
.blog-form-container input[type="text"]:focus,
.blog-form-container input[type="email"]:focus,
.blog-form-container textarea:focus {
    outline: none;
    border-color: #6eb7ce;
    background-color: rgba(255, 255, 255, 0.15);
}

.blog-form-container .form-input::placeholder,
.blog-form-container input[type="text"]::placeholder,
.blog-form-container input[type="email"]::placeholder,
.blog-form-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 968px) {
    .blog-container,
    .blog-detail,
    .blog-form-container {
        padding: 30px;
    }
    
    .blog-detail h1 {
        font-size: 28px;
    }
    
    .blog-header h1 {
        font-size: 28px;
    }
}

pre {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-left: 3px solid #f36d33;
    color: #666;
    page-break-inside: avoid;
    font-family: monospace;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1em 1.5em;
    display: block;
    word-wrap: break-word;
}
