/* Egendefinerte stiler fra bestill-kurv.html */
.contact-form-section {
    background: #f0f8ff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-group label {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #d6a354;
    border-radius: 8px;
    font-family: 'Unbounded', cursive;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c12828;
    box-shadow: 0 0 5px rgba(193, 40, 40, 0.3);
}

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

.submit-btn {
    background: #c12828;
    color: white;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Unbounded', cursive;
    font-size: 15px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #FDBB2D;
    color: #333;
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

.info-section {
    background: white;
    padding: 22px;
    border-radius: 15px;
    border-left: 5px solid #c12828;
    margin-bottom: 30px;
    font-size: 0.97rem;
}

.info-section h3 {
    color: #c12828;
    margin-bottom: 15px;
    font-size: 1.15rem;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.97rem;
}

.info-section li:last-child {
    border-bottom: none;
}

.kurv-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    height: 100%;
    min-height: 400px;
    position: sticky;
    top: 100px;
}

.kurv-image {
    width: 110%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .kurv-image-container {
        margin-top: 30px;
        min-height: 300px;
    }
}

.kurv-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .kurv-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }

    .gallery-item img {
        height: 200px;
    }
}
