/* אלבום – עיצוב מודרני עם אלמנטים מרחפים */
:root {
    --bg: #f8f7f4;
    --bg-card: #ffffff;
    --accent: #5a8f7b;
    --accent-hover: #4a7f6b;
    --accent-soft: #e8f0ed;
    --accent-light: #a8d5c4;
    --text: #2c2c2c;
    --text-muted: #6b6b6b;
    --border: #e5e3df;
    --shadow: rgba(44, 44, 44, 0.08);
    --shadow-lg: rgba(44, 44, 44, 0.12);
    --success: #5a8f7b;
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Assistant', 'Heebo', 'Segoe UI', 'Segoe UI Hebrew', 'Arial Hebrew', 'David', 'Gisha', 'Miriam', 'Noto Sans Hebrew', system-ui, -apple-system, sans-serif;
    --gradient-1: linear-gradient(135deg, #e8f0ed 0%, #f0f5f3 100%);
    --gradient-2: linear-gradient(135deg, #a8d5c4 0%, #c8e5d8 100%);
    --gradient-3: linear-gradient(135deg, #5a8f7b 0%, #6ba08a 100%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
    unicode-bidi: embed;
}

/* אלמנטים מרחפים ברקע */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(90, 143, 123, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(168, 213, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(232, 240, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.98); }
}

body.page-home::after {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-2);
    opacity: 0.3;
    top: -150px;
    right: -150px;
    z-index: 0;
    animation: floatCircle 15s ease-in-out infinite;
    filter: blur(40px);
}

body.page-room::after {
    content: '';
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.25;
    bottom: -200px;
    left: -200px;
    z-index: 0;
    animation: floatCircle 18s ease-in-out infinite reverse;
    filter: blur(50px);
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, 50px) rotate(180deg); }
}

/* צורות מרחפות נוספות */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatShape 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: var(--accent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    background: var(--accent-light);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.floating-shape:nth-child(3) {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

.floating-shape:nth-child(4) {
    width: 120px;
    height: 120px;
    background: var(--accent-light);
    top: 40%;
    right: 30%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.1); }
    50% { transform: translate(-20px, 30px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 1;
    animation: headerFadeIn 0.8s ease-out;
}

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

.logo {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 10px rgba(90, 143, 123, 0.1);
    animation: logoGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes logoGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
    opacity: 0.6;
}

.tagline {
    color: var(--text-muted);
    margin: 1rem 0 0;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.6;
}

.room-header {
    text-align: right;
}

.room-header .room-title {
    font-size: 1.8rem;
    margin: 0.75rem 0;
    color: var(--text);
    font-weight: 700;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.back-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.share-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        0 4px 20px var(--shadow),
        0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    animation: cardFadeIn 0.6s ease-out;
}

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

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 8px 30px var(--shadow-lg),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.card:hover::before {
    opacity: 1;
}

.card h2 {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    color: var(--text);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-2);
    border-radius: 2px;
}

/* Forms */
.form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.form input[type="text"],
.form input[type="file"],
.form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.form input[type="file"] {
    padding: 0.75rem;
    cursor: pointer;
}

.form textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

.form input:focus,
.form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 
        0 0 0 4px var(--accent-soft),
        0 2px 8px rgba(90, 143, 123, 0.1);
    transform: translateY(-1px);
}

.form input::placeholder,
.form textarea::placeholder {
    color: #aaa;
    opacity: 0.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.85rem 1.6rem;
    border: none;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:active {
    transform: scale(0.97);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled::before {
    display: none;
}

.btn-primary {
    background: var(--gradient-3);
    color: #fff;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: 
        0 4px 15px rgba(90, 143, 123, 0.3),
        0 2px 5px rgba(90, 143, 123, 0.2);
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 
        0 6px 20px rgba(90, 143, 123, 0.4),
        0 3px 8px rgba(90, 143, 123, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--accent-soft);
    color: var(--accent);
    border: 2px solid var(--accent-light);
    padding: 0.65rem 1.2rem;
}

.btn-secondary:hover {
    background: #dce8e2;
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* Room result (after create) */
.room-result {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.success-msg {
    color: var(--success);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.quick-upload-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.quick-upload-section h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--text);
}

.upload-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.upload-btn {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: var(--accent-soft);
    border: 2px dashed var(--accent-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    color: var(--accent);
    font-weight: 600;
}

.upload-btn:hover {
    background: #dce8e2;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(90, 143, 123, 0.2);
}

.upload-btn span:first-child {
    font-size: 2rem;
    display: block;
}

.upload-btn.camera-btn {
    background: var(--gradient-2);
    border-style: solid;
}

.upload-btn.camera-btn:hover {
    background: var(--gradient-3);
    color: #fff;
}

.link-box {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.link-box input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.link-box input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

#copy-link {
    white-space: nowrap;
}

#go-to-room {
    text-align: center;
    text-decoration: none;
}

/* Gallery */
.gallery-section {
    margin-bottom: 2rem;
}

.empty-gallery {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}

.empty-gallery::before {
    content: '📸';
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.3;
    animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.empty-gallery p {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-muted);
}

.collage-wrap {
    margin-bottom: 2rem;
}

.collage-wrap h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    color: var(--text);
}

.collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 
        0 4px 20px var(--shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.collage-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 
        0 4px 12px var(--shadow),
        0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #f0f0f0;
    animation: collageItemFadeIn 0.5s ease-out backwards;
}

@keyframes collageItemFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.collage-item:nth-child(1) { animation-delay: 0.1s; }
.collage-item:nth-child(2) { animation-delay: 0.15s; }
.collage-item:nth-child(3) { animation-delay: 0.2s; }
.collage-item:nth-child(4) { animation-delay: 0.25s; }
.collage-item:nth-child(5) { animation-delay: 0.3s; }
.collage-item:nth-child(6) { animation-delay: 0.35s; }
.collage-item:nth-child(n+7) { animation-delay: 0.4s; }

.collage-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 12px 30px var(--shadow-lg),
        0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-item:hover img {
    transform: scale(1.1);
}

.greeting-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.6rem 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.collage-item:hover .greeting-badge {
    background: linear-gradient(to top, rgba(90, 143, 123, 0.95), rgba(90, 143, 123, 0.85));
    padding: 0.75rem;
    max-height: none;
}

/* Slideshow */
.slideshow-wrap {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.slideshow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.slideshow-wrap h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text);
}

.btn-album-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: var(--gradient-3);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(90, 143, 123, 0.3),
        0 2px 5px rgba(90, 143, 123, 0.2);
}

.btn-album-link:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(90, 143, 123, 0.4),
        0 3px 8px rgba(90, 143, 123, 0.3);
}

.btn-album-link span:first-child {
    font-size: 1.2rem;
}

.slideshow {
    position: relative;
    min-height: 350px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e6e2 100%);
    margin-bottom: 1.5rem;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.05),
        0 4px 15px var(--shadow);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1);
}

.slide img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.slide.active img:hover {
    transform: scale(1.02);
}

.slide-greeting {
    margin: 1rem 0 0;
    padding: 0.75rem 1rem;
    background: var(--gradient-2);
    color: var(--text);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    max-width: 90%;
    box-shadow: 0 2px 10px rgba(90, 143, 123, 0.15);
    animation: slideInGreeting 0.6s ease-out;
}

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

.slideshow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

#slide-counter {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Upload result */
.upload-result {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    animation: resultSlideIn 0.4s ease-out;
    border: 2px solid transparent;
}

@keyframes resultSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.upload-result.success {
    background: var(--accent-soft);
    color: var(--success);
    border-color: var(--accent-light);
}

.upload-result.error {
    background: #fce8e8;
    color: #a44;
    border-color: #e88;
}

/* Footer */
.footer {
    margin-top: auto;
    padding: 2rem 0 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin: 1rem 0;
}

.footer-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

.credits {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.7;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.05em;
}

/* גילוי נאות */
.disclosure-content {
    line-height: 1.8;
}

.disclosure-content h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
    color: var(--text);
}

.disclosure-content ul {
    margin: 0.5rem 0 1rem;
    padding-right: 1.5rem;
}

.disclosure-content li {
    margin-bottom: 0.5rem;
}

/* RTL Support */
[dir="rtl"] .slideshow-nav {
    flex-direction: row;
}

/* תמיכה מלאה בעברית */
* {
    unicode-bidi: embed;
}

body, html {
    direction: rtl;
    text-align: right;
}

input[type="text"],
input[type="file"],
textarea {
    direction: rtl;
    text-align: right;
}

/* תיקון כיוון טקסט בכפתורים */
.btn {
    direction: rtl;
    unicode-bidi: embed;
}

/* תיקון כיוון טקסט בטבלאות וקולאז' */
.collage-item,
.slide {
    direction: rtl;
}

/* תיקון כיוון טקסט במודלים */
.accessibility-menu-content,
.video-modal-content {
    direction: rtl;
    text-align: right;
}

/* רספונסיביות */
@media (max-width: 768px) {
    .wrap {
        padding: 1.5rem 1rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h2 {
        font-size: 1.25rem;
    }
    
    .collage {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .slideshow {
        min-height: 280px;
    }
    
    .slide {
        padding: 1.5rem;
    }
    
    .slide img {
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 1rem 0.75rem;
    }
    
    .header {
        padding: 2rem 0 1.5rem;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 0.95rem;
    }
    
    .card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .card h2 {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .link-box {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .link-box input {
        width: 100%;
    }
    
    .collage {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .slideshow {
        min-height: 240px;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .slide img {
        max-height: 180px;
    }
    
    .slideshow-nav {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .slideshow-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-album-link {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .upload-options {
        flex-direction: column;
    }
    
    .upload-btn {
        min-width: 100%;
    }
    
    .btn {
        padding: 0.75rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .form input[type="text"],
    .form input[type="file"],
    .form textarea {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .wrap {
        max-width: 1000px;
    }
    
    .collage {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}
