/* ═══════════════════════════════════════════════════════════════
   LoveHub - Mobile-First Design (Optimized)
   Base: 320px+ | Tablet: 768px+ | Desktop: 1024px+
   ═══════════════════════════════════════════════════════════════ */

:root {
    --primary: #d63384;
    --primary-dark: #b02a6e;
    --primary-light: #f7d7e6;
    --secondary: #6c757d;
    --accent: #ff6b9d;
    --success: #10b981;
    --error: #ef4444;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #1a1a1a;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border: #dee2e6;
    --border-light: #f1f3f5;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font-display: 'Crimson Pro', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

/* Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.required { color: var(--error); }

.optional {
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 400;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    padding: 2rem 1rem;
}

.empty-state svg {
    margin: 0 auto 1rem;
    color: var(--text-muted);
    opacity: 0.5;
    width: 48px;
    height: 48px;
}

.empty-state h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Buttons (Mobile-First) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: none;
    width: 100%;
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s;
    width: 100%;
}

.btn-outline:active {
    background: var(--primary-light);
}

.btn-text {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 1.75rem;
    font-size: 1rem;
}

.btn-small {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.btn-full { width: 100%; }

.btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all 0.2s;
    flex-shrink: 0;
}

/* Navigation */
.nav-main {
    position: sticky;
    top: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    z-index: 100;
    backdrop-filter: blur(10px);
}

.nav-container {
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.logo svg {
    width: 24px;
    height: 24px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-name {
    display: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    padding: 2rem 1rem 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-visual { display: none; }

/* Features Section */
.features {
    background: var(--bg-secondary);
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
}

.feature-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
    line-height: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 3rem 1rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 3rem 1rem;
    text-align: center;
}

.cta-section h2 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 1rem 2rem;
}

.footer-container {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.footer-col h4 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    margin-bottom: 0.625rem;
    transition: color 0.2s;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active { display: flex; }

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

.modal-content {
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem 1.5rem;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: modalSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content.success-modal {
    text-align: center;
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 1.5rem;
    z-index: 1;
}

.modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.modal-footer {
    margin-top: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.modal-footer a {
    color: var(--primary);
    font-weight: 500;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--bg-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    line-height: 1.5;
}

.form-error {
    color: var(--error);
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-light);
}

.form-actions {
    margin-top: 2rem;
}

/* Message with Image */
.message-with-image {
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1rem;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.message-header span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.message-row {
    display: grid;
    gap: 1rem;
}

.message-text-input textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    transition: all 0.2s;
    background: var(--bg-primary);
    resize: vertical;
    min-height: 80px;
}

.message-text-input textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.image-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    cursor: pointer;
    transition: all 0.3s;
    min-height: 80px;
}

.image-upload-btn svg {
    color: var(--text-muted);
    width: 24px;
    height: 24px;
}

.image-upload-btn span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    text-align: center;
}

.image-preview {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-secondary);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 80px;
}

.remove-image {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Response Badges */
.response-badge {
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
}

.response-badge.accepted {
    background: #d1fae5;
    color: #059669;
}

.response-badge.rejected {
    background: #fee2e2;
    color: #dc2626;
}

.response-badge.pending {
    background: #fef3c7;
    color: #d97706;
}

/* Response Info */
.response-info {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
}

.response-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 2px solid;
    text-align: center;
}

.response-card.accepted {
    background: #ecfdf5;
    border-color: #10b981;
}

.response-card.rejected {
    background: #fef2f2;
    border-color: #ef4444;
}

.response-icon {
    font-size: 2.5rem;
}

.response-status {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.response-meta {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.response-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

.link-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.link-box input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
}

/* App Page */
.app-page {
    background: var(--bg-secondary);
    min-height: 100vh;
}

.main-content {
    padding: 1rem;
}

.tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.tab svg {
    width: 18px;
    height: 18px;
}

.tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.create-container,
.dashboard-container {
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.create-header,
.dashboard-header {
    margin-bottom: 2rem;
}

.create-header h1,
.dashboard-header h1 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.create-header p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.dashboard-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Projects List */
.projects-list {
    display: grid;
    gap: 1rem;
}

.project-card {
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: all 0.3s;
    cursor: pointer;
}

.project-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.125rem;
}

.project-type {
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    align-self: flex-start;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.8125rem;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.project-meta svg {
    width: 14px;
    height: 14px;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
}

/* Project Detail */
.project-detail h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.content-preview {
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.content-preview p {
    margin-bottom: 0.75rem;
}

.content-preview ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.content-preview li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* TABLET AND UP (768px+) */
@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

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

    .logo {
        font-size: 1.5rem;
    }

    .logo svg {
        width: 28px;
        height: 28px;
    }

    .user-name {
        display: block;
        font-size: 0.9375rem;
    }

    .nav-actions {
        gap: 1rem;
    }

    .btn-primary,
    .btn-outline {
        width: auto;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .btn-outline:hover {
        background: var(--primary-light);
    }

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: row;
    }

    .hero-visual {
        display: block;
        position: relative;
        height: 400px;
    }

    .floating-card {
        position: absolute;
        background: white;
        padding: 1.25rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        display: flex;
        align-items: center;
        gap: 1rem;
        animation: float 3s ease-in-out infinite;
    }

    .card-1 {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
    }

    .card-2 {
        top: 45%;
        right: 5%;
        animation-delay: 1s;
    }

    .card-3 {
        bottom: 10%;
        left: 20%;
        animation-delay: 2s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    .features {
        padding: 5rem 2rem;
    }

    .features-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 3.5rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .section-header p {
        font-size: 1.125rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .feature-item {
        padding: 2.5rem;
    }

    .feature-item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .stats {
        padding: 4rem 2rem;
    }

    .stats-container {
        max-width: 1200px;
        margin: 0 auto;
        gap: 3rem;
    }

    .stat-value {
        font-size: 3.5rem;
    }

    .stat-label {
        font-size: 1.125rem;
    }

    .cta-section {
        padding: 5rem 2rem;
    }

    .cta-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section p {
        font-size: 1.125rem;
    }

    .footer {
        padding: 4rem 2rem 2rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        grid-template-columns: 2fr 3fr;
        gap: 4rem;
        margin-bottom: 3rem;
    }

    .footer-links {
        gap: 2rem;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 2rem;
    }

    .modal-content {
        max-width: 500px;
        padding: 2.5rem;
    }

    .modal-content.large {
        max-width: 800px;
    }

    .modal-actions {
        flex-direction: row;
    }

    .modal-close {
        width: 36px;
        height: 36px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .message-row {
        grid-template-columns: 2fr 1fr;
    }

    .link-box {
        flex-direction: row;
    }

    .main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
    }

    .tabs {
        flex-direction: row;
        gap: 1rem;
    }

    .tab {
        flex: 1;
    }

    .create-container,
    .dashboard-container {
        padding: 3rem;
    }

    .create-header h1,
    .dashboard-header h1 {
        font-size: 2.5rem;
    }

    .create-header p {
        font-size: 1.0625rem;
    }

    .dashboard-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .projects-list {
        gap: 1.5rem;
    }

    .project-card:hover {
        border-color: var(--primary-light);
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .project-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: start;
    }

    .project-header h3 {
        font-size: 1.25rem;
    }

    .project-meta {
        flex-direction: row;
        gap: 1.5rem;
    }

    .detail-meta {
        flex-direction: row;
        gap: 2rem;
    }

    .detail-actions {
        flex-direction: row;
    }

    .response-card {
        flex-direction: row;
        text-align: left;
    }

    .response-icon {
        font-size: 3rem;
    }

    .response-status {
        font-size: 1.125rem;
    }
}

/* DESKTOP (1024px+) */
@media (min-width: 1024px) {
    .hero {
        padding: 6rem 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }
}