
.typewriter-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* Adjust as needed */
  padding: 0 20px;
  overflow-x: hidden;
}


.typewriter-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
  min-width: 0;
}

.typewriter-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1em, 6vw, 7rem);
  font-weight: bold;
  letter-spacing: 2px;
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 3.5s steps(40, end), blink-caret .75s step-end infinite;
  flex-shrink: 0;
}

.cursor {
  font-family: 'Courier New', Courier, monospace;
  font-size: clamp(1em, 6vw, 7rem);
  font-weight: 100;
  color: rgb(0, 0, 0);
  margin-left: 0px;
  /* animation: blink 1.2s infinite; */
  flex-shrink: 0;
}

@keyframes blink {
  0%, 50% {opacity: 1;}
  50%, 100% {opacity: 0;}
}

/* Contact Form Styles */
.contact-form {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 15px 30px;
  max-width: 100%;
}

.contact-form .form-field {
  display: contents;
}

.contact-form .form-field label {
  display: flex;
  align-items: center;
  font-weight: 500;
}

.contact-form .form-field input,
.contact-form .form-field textarea {
  width: 100%;
}

.contact-form .form-button {
  grid-column: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    width: 100%;
}

.col-md-6 {
    flex: 0 0 100%;
    max-width: 750px;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}


/* settings.html */

/* body {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--primary-bg, #ffffff);
    color: var(--primary-text, #111827);
    transition: background-color 0.3s ease, color 0.3s ease;
} */

.settings-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.settings-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.settings-header h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.settings-section {
    background: var(--secondary-bg, #f9fafb);
    border: 1px solid var(--border-color, #e5e7eb);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.settings-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.settings-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-text, #111827);
}

.settings-section-title i {
    font-size: 1.75rem;
    color: var(--accent-color, #3b82f6);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.theme-card {
    background: var(--primary-bg, #ffffff);
    border: 2px solid var(--border-color, #e5e7eb);
    border-radius: 8px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.theme-card.selected {
    border-color: var(--accent-color, #3b82f6);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.theme-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.theme-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-text, #111827);
    margin: 0;
}

.theme-card-badge {
    background: var(--accent-color, #3b82f6);
    color: white;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card.selected .theme-card-badge {
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.theme-card-description {
    font-size: 0.9rem;
    color: var(--secondary-text, #6b7280);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.theme-preview {
    width: 100%;
    height: 120px;
    border-radius: 6px;
    border: 1px solid var(--border-color, #e5e7eb);
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--secondary-text, #6b7280);
}

.theme-preview.light-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
}

.theme-preview.dark-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #d1d1d1;
}

.theme-preview.sepia-preview {
    background: linear-gradient(135deg, #fdf6f1 0%, #ede1d6 100%);
    color: #6d4c41;
}

.theme-card-action {
    display: flex;
    gap: 0.5rem;
}

.btn-theme {
    flex: 1;
    padding: 0.5rem;
    font-size: 0.9rem;
    border: 1px solid var(--border-color, #e5e7eb);
    background: var(--primary-bg, #ffffff);
    color: var(--primary-text, #111827);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
}

.btn-theme:hover {
    background: var(--accent-color, #3b82f6);
    color: white;
    border-color: var(--accent-color, #3b82f6);
}

.theme-card.selected .btn-theme {
    background: var(--accent-color, #3b82f6);
    color: white;
    border-color: var(--accent-color, #3b82f6);
}

.settings-info {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 4px solid var(--accent-color, #3b82f6);
    border-radius: 6px;
    padding: 1rem;
    margin-top: 1.5rem;
    color: var(--primary-text, #111827);
}

.settings-info i {
    color: var(--accent-color, #3b82f6);
    margin-right: 0.5rem;
}

.alert-message {
    display: none;
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 400px;
    z-index: 1000;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.alert-message.show {
    display: block;
}

@keyframes slideIn {
    from {
        transform: translateX(500px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.navbar-custom {
    background: var(--secondary-bg, #f9fafb);
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.navbar-brand {
    color: var(--accent-color, #3b82f6) !important;
    font-weight: 700;
}

.nav-link {
    color: var(--secondary-text, #6b7280) !important;
}

.nav-link:hover {
    color: var(--accent-color, #3b82f6) !important;
}

@media (max-width: 768px) {
    .settings-container {
        padding: 1rem;
    }

    .settings-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }

    .settings-header h1 {
        font-size: 1.5rem;
    }

    .settings-section {
        padding: 1.5rem;
    }

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

    .alert-message {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}